summaryrefslogtreecommitdiff
path: root/source3/client
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1997-10-26 07:45:36 +0000
committerAndrew Tridgell <tridge@samba.org>1997-10-26 07:45:36 +0000
commitf8c059517af070fe8718f7152a0a9c89668162fa (patch)
treeaf164e1ca915ae9049d959444a92dfda1b005b80 /source3/client
parenta342ff5bf407679918a1a5d0c2faaf0a3465d303 (diff)
downloadsamba-f8c059517af070fe8718f7152a0a9c89668162fa.tar.gz
samba-f8c059517af070fe8718f7152a0a9c89668162fa.tar.bz2
samba-f8c059517af070fe8718f7152a0a9c89668162fa.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) (This used to be commit 944ecbcbd47afcc20e2e408a06d57c7b8d0d86a8)
Diffstat (limited to 'source3/client')
-rw-r--r--source3/client/client.c1
-rw-r--r--source3/client/clientutil.c2
2 files changed, 1 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c
index 68cd930cf9..6528919051 100644
--- a/source3/client/client.c
+++ b/source3/client/client.c
@@ -44,7 +44,6 @@ extern BOOL connect_as_printer;
extern BOOL connect_as_ipc;
extern struct in_addr ipzero;
-char cryptkey[8];
extern BOOL doencrypt;
extern pstring user_socket_options;
diff --git a/source3/client/clientutil.c b/source3/client/clientutil.c
index 47cb78f0ce..d05be8ae9b 100644
--- a/source3/client/clientutil.c
+++ b/source3/client/clientutil.c
@@ -67,7 +67,7 @@ int max_xmit = BUFFER_SIZE;
BOOL have_ip = False;
-struct in_addr dest_ip;
+extern struct in_addr dest_ip;
extern int Protocol;