From f3c79936d7fc21d3257432962b23764ca00b0cbb Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 5 Oct 1996 13:13:31 +0000 Subject: - replace the base36 function with one that works on more systems (compiler bugs were the problem) - minor password cleanups (catch WfWG bug where it sets the password to a space instead of a NULL) - fix printing problem for kanji users - minor cleanups (This used to be commit 92566ecc315c29da6e9aaa67ddae33e64f5bcc67) --- source3/namework.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source3/namework.c') diff --git a/source3/namework.c b/source3/namework.c index 0380c1460a..80183dac84 100644 --- a/source3/namework.c +++ b/source3/namework.c @@ -333,7 +333,7 @@ static void process_rcv_backup_list(struct packet_struct *p,char *buf) for (buf1 = buf+5; *buf1 && count; buf1 = skip_string(buf1, 1), --count) { struct in_addr back_ip; - struct subnet_record *d; + /* struct subnet_record *d; */ DEBUG(4,("Searching for backup browser %s at %s...\n", buf1, inet_ntoa(ip))); @@ -352,8 +352,9 @@ static void process_rcv_backup_list(struct packet_struct *p,char *buf) DEBUG(4,("Found browser server at %s\n", inet_ntoa(back_ip))); DEBUG(4,("END THIS LOOP: CODE NEEDS UPDATING\n")); +#if 0 /* XXXX function needs work */ - continue; + continue; if ((d = find_subnet(back_ip))) { @@ -374,6 +375,7 @@ static void process_rcv_backup_list(struct packet_struct *p,char *buf) } } } +#endif } } -- cgit