diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-07-03 02:58:46 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-07-03 02:58:46 +0000 |
commit | f64bd08ad3056da5843703f87a488e2ce2067bc5 (patch) | |
tree | eb6b612a63402dd5d5e15007e0b62cd504054d21 | |
parent | 9c77b8ab373914ebb8c45ad912ae8af48b22c7e3 (diff) | |
download | samba-f64bd08ad3056da5843703f87a488e2ce2067bc5.tar.gz samba-f64bd08ad3056da5843703f87a488e2ce2067bc5.tar.bz2 samba-f64bd08ad3056da5843703f87a488e2ce2067bc5.zip |
fixed conflict between two variables called d
(This used to be commit 38135c854e6b5d126939e226f815bb1a8d727f69)
-rw-r--r-- | source3/nameresp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/nameresp.c b/source3/nameresp.c index 8484cb4fd1..c79c30d46f 100644 --- a/source3/nameresp.c +++ b/source3/nameresp.c @@ -101,14 +101,14 @@ static void dead_netbios_entry(struct subnet_record *d, if ((!NAME_GROUP(n->nb_flags))) { - struct subnet_record *d = find_subnet(ipgrp); - if (d) + struct subnet_record *d1 = find_subnet(ipgrp); + if (d1) { /* remove the name that had been registered with us, and we're now getting no response when challenging. see rfc1001.txt 15.5.2 */ - remove_netbios_name(d, n->name.name, n->name.name_type, + remove_netbios_name(d1, n->name.name, n->name.name_type, REGISTER, n->to_ip); } } |