summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-09-10 04:00:09 +0000
committerAndrew Tridgell <tridge@samba.org>1998-09-10 04:00:09 +0000
commit1b07de7079e81da9c0b930bdc30ae0451b57d53a (patch)
tree76a664edbfb937b599914e89086d70d73e7ab7fd
parent02b3fddce33a58a4db2102670b502fc0c6f45fab (diff)
downloadsamba-1b07de7079e81da9c0b930bdc30ae0451b57d53a.tar.gz
fixed a bug in the wins database writer that caused the database to be
written continuously rather than once every 5 seconds (at most). also changed it to 20 seconds :)
-rw-r--r--source/nmbd/nmbd_winsserver.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/source/nmbd/nmbd_winsserver.c b/source/nmbd/nmbd_winsserver.c
index 48d27f7bae9..1502dd8155d 100644
--- a/source/nmbd/nmbd_winsserver.c
+++ b/source/nmbd/nmbd_winsserver.c
@@ -1524,9 +1524,11 @@ void initiate_wins_processing(time_t t)
if (!lasttime)
lasttime = t;
- if (t - lasttime < 5)
+ if (t - lasttime < 20)
return;
+ lasttime = t;
+
if(!lp_we_are_a_wins_server())
return;
@@ -1541,17 +1543,23 @@ void initiate_wins_processing(time_t t)
/*******************************************************************
Write out the current WINS database.
******************************************************************/
-
void wins_write_database(void)
{
struct name_record *namerec;
pstring fname, fnamenew;
-
+ static int child_pid;
+
FILE *fp;
if(!lp_we_are_a_wins_server())
return;
+ /* we will do the writing in a child process to ensure that the parent
+ doesn't block while this is done */
+ if ((child_pid=fork())) {
+ return;
+ }
+
pstrcpy(fname,lp_lockdir());
trim_string(fname,NULL,"/");
pstrcat(fname,"/");