From fd91ae3325adfdc83f95a284caa746c000ad7e30 Mon Sep 17 00:00:00 2001 From: Ondrej Zajicek Date: Wed, 5 Nov 2008 22:36:49 +0100 Subject: Fix problem with local time changes. --- proto/rip/auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'proto/rip') diff --git a/proto/rip/auth.c b/proto/rip/auth.c index 8669e16..1f7050f 100644 --- a/proto/rip/auth.c +++ b/proto/rip/auth.c @@ -77,7 +77,7 @@ rip_incoming_authentication( struct proto *p, struct rip_block_auth *block, stru WALK_LIST(ptmp, *l) { if (block->keyid != ptmp->id) continue; - if ((ptmp->genfrom > now) || (ptmp->gento < now)) continue; + if ((ptmp->genfrom > now_real) || (ptmp->gento < now_real)) continue; pass = ptmp; break; } -- cgit v1.2.3