summaryrefslogtreecommitdiff
path: root/source/namework.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1996-10-05 13:13:31 +0000
committerAndrew Tridgell <tridge@samba.org>1996-10-05 13:13:31 +0000
commit92566ecc315c29da6e9aaa67ddae33e64f5bcc67 (patch)
tree780b95bedf0c10e8292d999028c1e41b240d6f39 /source/namework.c
parent975ddfd3099b9625d674ee862d4174d03ba7386e (diff)
downloadsamba-92566ecc315c29da6e9aaa67ddae33e64f5bcc67.tar.gz
- 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
Diffstat (limited to 'source/namework.c')
-rw-r--r--source/namework.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/namework.c b/source/namework.c
index 0380c1460af..80183dac84f 100644
--- a/source/namework.c
+++ b/source/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
}
}