From f8c059517af070fe8718f7152a0a9c89668162fa Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 26 Oct 1997 07:45:36 +0000 Subject: fix some casting errors in smbencrypt and some multiply-defined errors in clientutil.c (Luke, you can't just copy a global variable declaration from one file to another, you need to declare one of them extern) (This used to be commit 944ecbcbd47afcc20e2e408a06d57c7b8d0d86a8) --- source3/libsmb/smbdes.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'source3/libsmb/smbdes.c') diff --git a/source3/libsmb/smbdes.c b/source3/libsmb/smbdes.c index 9675401f146..e4f8280f9bc 100644 --- a/source3/libsmb/smbdes.c +++ b/source3/libsmb/smbdes.c @@ -329,11 +329,6 @@ void cred_hash2(unsigned char *out,unsigned char *in,unsigned char *key) { unsigned char buf[8]; static unsigned char key2[8]; - int i; - - for (i=0;i<8;i++) { - key2[i] = 0; - } smbhash(buf, in, key); key2[0] = key[7]; -- cgit