From: bal Date: Mon, 18 Feb 1985 15:14:22 +0000 (+0000) Subject: bug fixed: lifetime of an item was too short; it should also cover X-Git-Tag: release-5-5~5604 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=66ab97d2b0d67ea011faefc2282f4307ba621699;p=ack.git bug fixed: lifetime of an item was too short; it should also cover any live/dead message prior to its initial live-message. --- diff --git a/util/ego/ra/ra_lifet.c b/util/ego/ra/ra_lifet.c index 4b623ac77..24f4ca911 100644 --- a/util/ego/ra/ra_lifet.c +++ b/util/ego/ra/ra_lifet.c @@ -57,7 +57,7 @@ build_lifetimes(items) * item; yet, there may be a register message for it... */ if(item != (item_p) 0) { - item->it_lastlive = now; + item->it_lastlive = last_code + 1; } } else { if (is_deadmsg(l)) {