summaryrefslogtreecommitdiff
path: root/source3/nmbd/nmbd_packets.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2002-07-28 06:19:14 +0000
committerAndrew Tridgell <tridge@samba.org>2002-07-28 06:19:14 +0000
commited9a219c8719063898c9b39ade0ba1b10739db98 (patch)
tree0bfab52870c9bf4c020c94bf56d1a299938186c1 /source3/nmbd/nmbd_packets.c
parentc4fcf56380739cc58a2096aefe587bee50fde27d (diff)
downloadsamba-ed9a219c8719063898c9b39ade0ba1b10739db98.tar.gz
samba-ed9a219c8719063898c9b39ade0ba1b10739db98.tar.bz2
samba-ed9a219c8719063898c9b39ade0ba1b10739db98.zip
fix minor nits in nmbd from adtam@cup.hp.com
samba-patches 959 (This used to be commit ef04261e2510b658322336ce841b01f1c903eee2)
Diffstat (limited to 'source3/nmbd/nmbd_packets.c')
-rw-r--r--source3/nmbd/nmbd_packets.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd_packets.c b/source3/nmbd/nmbd_packets.c
index a20ebf16fd..4bd949f5a3 100644
--- a/source3/nmbd/nmbd_packets.c
+++ b/source3/nmbd/nmbd_packets.c
@@ -1670,7 +1670,7 @@ void retransmit_or_expire_response_records(time_t t)
to IP %s on subnet %s\n", rrec->response_id, inet_ntoa(rrec->packet->ip),
subrec->subnet_name));
}
- rrec->repeat_time += rrec->repeat_interval;
+ rrec->repeat_time = t + rrec->repeat_interval;
rrec->repeat_count--;
}
else