summaryrefslogtreecommitdiffstats
path: root/source/smbwrapper
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/smbwrapper
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/smbwrapper')
-rw-r--r--source/smbwrapper/smbw.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/smbwrapper/smbw.c b/source/smbwrapper/smbw.c
index b4b0b28f368..047db9bb963 100644
--- a/source/smbwrapper/smbw.c
+++ b/source/smbwrapper/smbw.c
@@ -442,9 +442,8 @@ struct smbw_server *smbw_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);
get_auth_data_fn(server, share, &workgroup, &username, &password);
@@ -495,7 +494,7 @@ struct smbw_server *smbw_server(char *server, char *share)
again:
slprintf(ipenv,sizeof(ipenv)-1,"HOST_%s", server_n);
- ip = ipzero;
+ zero_ip(&ip);
if ((p=smbw_getshared(ipenv))) {
ip = *(interpret_addr2(p));
}