Don't assign to a variable which is then not referenced: Coverity 998 [UNUSED].

svn path=/trunk/; revision=37340
This commit is contained in:
Bill Meier 2011-05-20 20:41:23 +00:00
parent d99149b1d6
commit c0922b93b6
1 changed files with 1 additions and 1 deletions

View File

@ -847,7 +847,7 @@ get_sealing_rc4key(const guint8 exportedsessionkey[NTLMSSP_KEY_LEN] ,const int f
clientsealkey[7]=0xb0;
}
}
serversealkey = memcpy(serversealkey,clientsealkey,*keylen);
memcpy(serversealkey,clientsealkey,*keylen);
}
}
/* Create an NTLMSSP version 1 key.