Skip to content

Commit

Permalink
removed a redundant condition.
Browse files Browse the repository at this point in the history
from Mickael Hoerdt <hoerdt@clarinet.u-strasbg.fr>
  • Loading branch information
jinmei committed Apr 4, 2001
1 parent 2b50567 commit 061366b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions kame/kame/pim6sd/main.c
@@ -1,4 +1,4 @@
/* $KAME: main.c,v 1.16 2001/03/22 03:34:47 jinmei Exp $ */
/* $KAME: main.c,v 1.17 2001/04/04 15:06:17 jinmei Exp $ */

/*
* Copyright (c) 1998 by the University of Southern California.
Expand Down Expand Up @@ -608,14 +608,13 @@ main(argc, argv)
}
lasttime = curtime;
if (secs == 0 || difftime.tv_sec > 0)
if (secs == 0 || difftime.tv_sec > 0)
{
{
#ifdef TIMERDEBUG
IF_DEBUG(DEBUG_TIMEOUT)
log(LOG_DEBUG, 0, "\taging callouts: secs %d, diff secs %d, diff usecs %d", secs, difftime.tv_sec, difftime.tv_usec);
#endif
age_callout_queue(difftime.tv_sec);
}
}
secs = -1;
} while (difftime.tv_sec > 0);

Expand Down

0 comments on commit 061366b

Please sign in to comment.