diff options
author | Andrew Tridgell <tridge@samba.org> | 1997-10-26 07:45:36 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1997-10-26 07:45:36 +0000 |
commit | 944ecbcbd47afcc20e2e408a06d57c7b8d0d86a8 (patch) | |
tree | 5138db8192997a2f967ff953b0f380bb61a32d70 /source/libsmb/smbdes.c | |
parent | 4bf5c03b18f88b566f3ac12cc4b3a9c5c96fd35d (diff) | |
download | samba-944ecbcbd47afcc20e2e408a06d57c7b8d0d86a8.tar.gz samba-944ecbcbd47afcc20e2e408a06d57c7b8d0d86a8.tar.xz samba-944ecbcbd47afcc20e2e408a06d57c7b8d0d86a8.zip |
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)
Diffstat (limited to 'source/libsmb/smbdes.c')
-rw-r--r-- | source/libsmb/smbdes.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/source/libsmb/smbdes.c b/source/libsmb/smbdes.c index 9675401f146..e4f8280f9bc 100644 --- a/source/libsmb/smbdes.c +++ b/source/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]; |