summaryrefslogtreecommitdiff
path: root/source3/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
commitf3c79936d7fc21d3257432962b23764ca00b0cbb (patch)
tree8f942150cf4c7b549ea5e7aa3175ee6e1f61df98 /source3/namework.c
parentf6153293603e8413933e8d539df4f2c0b18a6a4c (diff)
downloadsamba-f3c79936d7fc21d3257432962b23764ca00b0cbb.tar.gz
samba-f3c79936d7fc21d3257432962b23764ca00b0cbb.tar.bz2
samba-f3c79936d7fc21d3257432962b23764ca00b0cbb.zip
- 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)
Diffstat (limited to 'source3/namework.c')
-rw-r--r--source3/namework.c6
1 files changed, 4 insertions, 2 deletions
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
}
}