summaryrefslogtreecommitdiffstats
path: root/source/auth
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/auth
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/auth')
-rw-r--r--source/auth/auth_domain.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/source/auth/auth_domain.c b/source/auth/auth_domain.c
index fa6093a5924..f3c2fa97e4d 100644
--- a/source/auth/auth_domain.c
+++ b/source/auth/auth_domain.c
@@ -24,8 +24,6 @@
BOOL global_machine_password_needs_changing = False;
-extern struct in_addr ipzero;
-
extern pstring global_myname;
/***********************************************************************
@@ -183,7 +181,7 @@ static BOOL attempt_connect_to_dc(struct cli_state *pcli, struct in_addr *ip,
* Ignore addresses we have already tried.
*/
- if (ip_equal(ipzero, *ip))
+ if (is_zero_ip(*ip))
return False;
if (!lookup_pdc_name(global_myname, lp_workgroup(), ip, dc_name))
@@ -232,7 +230,7 @@ static BOOL find_connect_pdc(struct cli_state *pcli,
if((connected_ok = attempt_connect_to_dc(pcli, &ip_list[i], trust_passwd)))
break;
- ip_list[i] = ipzero; /* Tried and failed. */
+ zero_ip(&ip_list[i]); /* Tried and failed. */
}
/*
@@ -242,7 +240,7 @@ static BOOL find_connect_pdc(struct cli_state *pcli,
i = (sys_random() % count);
if (!(connected_ok = attempt_connect_to_dc(pcli, &ip_list[i], trust_passwd)))
- ip_list[i] = ipzero; /* Tried and failed. */
+ zero_ip(&ip_list[i]); /* Tried and failed. */
}
/*