diff options
author | Jeremy Allison <jra@samba.org> | 2004-06-29 17:32:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:05 -0500 |
commit | 7310ba1b18a8971d432be0cee59b25c1d16383b9 (patch) | |
tree | 9b653b086841086edf3b52b0812426c9bc7ec413 /source3/nmbd | |
parent | 33c2230524094960b3a22742e7a94ecad8c9d8ab (diff) | |
download | samba-7310ba1b18a8971d432be0cee59b25c1d16383b9.tar.gz samba-7310ba1b18a8971d432be0cee59b25c1d16383b9.tar.bz2 samba-7310ba1b18a8971d432be0cee59b25c1d16383b9.zip |
r1299: Don't "break" - "continue" ! Otherwise we only expire the first name !
Doh !
Jeremy.
(This used to be commit 451d289f6971a74757b72577cc587bef06585540)
Diffstat (limited to 'source3/nmbd')
-rw-r--r-- | source3/nmbd/nmbd_winsserver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd_winsserver.c b/source3/nmbd/nmbd_winsserver.c index 8ebdfadbf7..0e0289d9a3 100644 --- a/source3/nmbd/nmbd_winsserver.c +++ b/source3/nmbd/nmbd_winsserver.c @@ -1736,7 +1736,7 @@ void initiate_wins_processing(time_t t) DEBUG(3,("initiate_wins_processing: deleting timed out DNS name %s\n", nmb_namestr(&namerec->name))); remove_name_from_namelist( wins_server_subnet, namerec ); - break; + continue; } /* handle records, samba is the wins owner */ |