diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-04-17 04:41:53 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-04-17 04:41:53 +0000 |
commit | 841f3e913660ddab5ba7165aae009f0232f9abb0 (patch) | |
tree | 3eaaa6e02f234042177a958ce6d498f498be9a5c | |
parent | da7b171a597e3df0222826b667175c048d7c07d1 (diff) | |
download | samba-841f3e913660ddab5ba7165aae009f0232f9abb0.tar.gz samba-841f3e913660ddab5ba7165aae009f0232f9abb0.tar.bz2 samba-841f3e913660ddab5ba7165aae009f0232f9abb0.zip |
expiry of browser entries wasn't happening once the entry had synced.
lkcl
(This used to be commit 1d89338fd9f6d68b8fdbc704ca2022b0033d957c)
-rw-r--r-- | source3/namebrowse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/namebrowse.c b/source3/namebrowse.c index b87ea9fec3..b891f51718 100644 --- a/source3/namebrowse.c +++ b/source3/namebrowse.c @@ -245,12 +245,12 @@ void do_browser_lists(time_t t) DEBUG(4,("do_browser_lists: Initiating sync with %s, workgroup %s\n", b->name, b->group)); start_sync_browse_entry(b); - expire_browse_cache(t - 60); } else { DEBUG(9, ("do_browser_lists: no entries to sync.\n")); } + expire_browse_cache(t - 60); } |