diff options
author | Jeremy Allison <jra@samba.org> | 2001-10-08 19:39:07 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-10-08 19:39:07 +0000 |
commit | f5a5acec33160e9eedad079afe04597f796658d3 (patch) | |
tree | 6d3dfa5b88f2a4f4d2ae021dc30569213fbfeba0 /source3/nmbd/nmbd_mynames.c | |
parent | d02b5fefba169ad6cdcbbaf01769113481692f38 (diff) | |
download | samba-f5a5acec33160e9eedad079afe04597f796658d3.tar.gz |
Fixed WINS re-registration bug. Don't ask..... :-(. It was in my code :-).
Jeremy.
(This used to be commit 129c640810bdf9ce2942e682d3d6fcca01a13488)
Diffstat (limited to 'source3/nmbd/nmbd_mynames.c')
-rw-r--r-- | source3/nmbd/nmbd_mynames.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/nmbd/nmbd_mynames.c b/source3/nmbd/nmbd_mynames.c index 47655c804bb..7f9a3441a8c 100644 --- a/source3/nmbd/nmbd_mynames.c +++ b/source3/nmbd/nmbd_mynames.c @@ -217,8 +217,8 @@ void refresh_my_names(time_t t) */ if( !is_refresh_already_queued( subrec, namerec) ) refresh_name( subrec, namerec, NULL, NULL, NULL ); - namerec->data.death_time += lp_max_ttl(); - namerec->data.refresh_time += MIN(lp_max_ttl(), MAX_REFRESH_TIME); + namerec->data.death_time = t + lp_max_ttl(); + namerec->data.refresh_time = t + MIN(lp_max_ttl(), MAX_REFRESH_TIME); } } } |