summaryrefslogtreecommitdiffstats
path: root/source/libsmb/libsmbclient.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-11-26 03:11:44 +0000
committerTim Potter <tpot@samba.org>2001-11-26 03:11:44 +0000
commit778f5f77a66cda76348a7c6f64cd63afe2bfe077 (patch)
tree3791b1e7b10b3f5aaa1b8d6680af429530d7923f /source/libsmb/libsmbclient.c
parent042b9e3a6332473dc88c36dd7f99428644324ac4 (diff)
downloadsamba-778f5f77a66cda76348a7c6f64cd63afe2bfe077.tar.gz
samba-778f5f77a66cda76348a7c6f64cd63afe2bfe077.tar.xz
samba-778f5f77a66cda76348a7c6f64cd63afe2bfe077.zip
Got medieval on another pointless extern. Removed extern struct ipzero
and replaced with two functions: void zero_ip(struct in_adder *ip); BOOL is_zero_ip(struct in_addr ip);
Diffstat (limited to 'source/libsmb/libsmbclient.c')
-rw-r--r--source/libsmb/libsmbclient.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/libsmb/libsmbclient.c b/source/libsmb/libsmbclient.c
index ce00548518f..a85d9e45fc6 100644
--- a/source/libsmb/libsmbclient.c
+++ b/source/libsmb/libsmbclient.c
@@ -246,9 +246,8 @@ struct smbc_server *smbc_server(char *server, char *share,
fstring group;
pstring ipenv;
struct in_addr ip;
- extern struct in_addr ipzero;
- ip = ipzero;
+ zero_ip(&ip);
ZERO_STRUCT(c);
/* try to use an existing connection */
@@ -306,7 +305,7 @@ struct smbc_server *smbc_server(char *server, char *share,
again:
slprintf(ipenv,sizeof(ipenv)-1,"HOST_%s", server_n);
- ip = ipzero;
+ zero_ip(&ip);
/* have to open a new connection */
if (!cli_initialise(&c) || !cli_connect(&c, server_n, &ip)) {