diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2008-11-05 22:36:49 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2008-11-05 22:36:49 +0100 |
commit | fd91ae3325adfdc83f95a284caa746c000ad7e30 (patch) | |
tree | f05f759c9511ffda89fabadf1341a57adc5b542e /nest/password.c | |
parent | 1389f3699fc643dac6fd4d2f19fb59da3624a2fa (diff) | |
download | bird-fd91ae3325adfdc83f95a284caa746c000ad7e30.tar bird-fd91ae3325adfdc83f95a284caa746c000ad7e30.zip |
Fix problem with local time changes.
Diffstat (limited to 'nest/password.c')
-rw-r--r-- | nest/password.c | 2 |
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; } } |