summaryrefslogtreecommitdiffstats
path: root/nest/password.c
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2008-11-05 22:36:49 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2008-11-05 22:36:49 +0100
commitfd91ae3325adfdc83f95a284caa746c000ad7e30 (patch)
treef05f759c9511ffda89fabadf1341a57adc5b542e /nest/password.c
parent1389f3699fc643dac6fd4d2f19fb59da3624a2fa (diff)
downloadbird-fd91ae3325adfdc83f95a284caa746c000ad7e30.tar
bird-fd91ae3325adfdc83f95a284caa746c000ad7e30.zip
Fix problem with local time changes.
Diffstat (limited to 'nest/password.c')
-rw-r--r--nest/password.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/password.c b/nest/password.c
index 7f1c8dc..80c4c7b 100644
--- a/nest/password.c
+++ b/nest/password.c
@@ -22,7 +22,7 @@ password_find(list *l)
{
WALK_LIST(pi, *l)
{
- if ((pi->genfrom < now) && (pi->gento > now))
+ if ((pi->genfrom < now_real) && (pi->gento > now_real))
return pi;
}
}