summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamba Release Account <samba-bugs@samba.org>1997-04-17 04:41:53 +0000
committerSamba Release Account <samba-bugs@samba.org>1997-04-17 04:41:53 +0000
commit1d89338fd9f6d68b8fdbc704ca2022b0033d957c (patch)
treec7374a90daca7e6615ea3790f726d6f4642a75e6
parentd0dc4c9b7c828f706c99b1dab3f0ae0844cbc6a8 (diff)
downloadsamba-1d89338fd9f6d68b8fdbc704ca2022b0033d957c.tar.gz
samba-1d89338fd9f6d68b8fdbc704ca2022b0033d957c.tar.xz
samba-1d89338fd9f6d68b8fdbc704ca2022b0033d957c.zip
expiry of browser entries wasn't happening once the entry had synced.
lkcl
-rw-r--r--source/namebrowse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/namebrowse.c b/source/namebrowse.c
index b87ea9fec34..b891f51718e 100644
--- a/source/namebrowse.c
+++ b/source/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);
}