From: Luke Leighton Date: Tue, 14 Oct 1997 10:17:12 +0000 (+0000) Subject: changed *(uint32*)(clnt_cred) to SIVAL(clnt_cred, ....) X-Git-Url: http://git.samba.org/samba.git/?p=kai%2Fsamba.git;a=commitdiff_plain;h=657fc8882eb149cdae6823353728024c921fa608 changed *(uint32*)(clnt_cred) to SIVAL(clnt_cred, ....) (This used to be commit 0056b154435e9d2a3fd2be37f7c3afd9e3fbfd87) --- diff --git a/source3/pipenetlog.c b/source3/pipenetlog.c index b4f0db766bf..861bae3809b 100644 --- a/source3/pipenetlog.c +++ b/source3/pipenetlog.c @@ -379,6 +379,7 @@ static BOOL deal_with_credentials(user_struct *vuser, DOM_CRED *clnt_cred, DOM_CRED *srv_cred) { UTIME new_clnt_time; + uint32 new_cred; /* doesn't matter that server time is 0 */ srv_cred->timestamp.time = 0; @@ -398,7 +399,9 @@ static BOOL deal_with_credentials(user_struct *vuser, &(srv_cred->challenge)); /* update the client and server credentials, for use next time... */ - *(uint32*)(vuser->dc.srv_cred.data) = ( *(uint32*)(vuser->dc.clnt_cred.data) += new_clnt_time.time ); + new_cred = IVAL(vuser->dc.clnt_cred.data, 0) + new_clnt_time.time; + SIVAL(vuser->dc.clnt_cred.data, new_cred, 0); + SIVAL(vuser->dc.srv_cred.data , new_cred, 0); return True; }