diff options
Diffstat (limited to 'sys/netatm/uni/sscop_timer.c')
-rw-r--r-- | sys/netatm/uni/sscop_timer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netatm/uni/sscop_timer.c b/sys/netatm/uni/sscop_timer.c index 087ae79..e6b1b90 100644 --- a/sys/netatm/uni/sscop_timer.c +++ b/sys/netatm/uni/sscop_timer.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: sscop_timer.c,v 1.2 1998/09/17 09:35:01 phk Exp $ + * @(#) $Id: sscop_timer.c,v 1.3 1998/10/31 20:07:00 phk Exp $ * */ @@ -44,7 +44,7 @@ #include <netatm/uni/sscop_var.h> #ifndef lint -__RCSID("@(#) $Id: sscop_timer.c,v 1.2 1998/09/17 09:35:01 phk Exp $"); +__RCSID("@(#) $Id: sscop_timer.c,v 1.3 1998/10/31 20:07:00 phk Exp $"); #endif @@ -101,7 +101,7 @@ sscop_timeout(tip) * If an expired timer is found, notify that entry. */ sprev = &sscop_head; - while (sop = *sprev) { + while ((sop = *sprev) != NULL) { /* * Check out each timer |