diff options
author | Niels Provos <provos@cvs.openbsd.org> | 1997-07-22 11:18:27 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 1997-07-22 11:18:27 +0000 |
commit | fe986c82719369723c381542f56608ddf2f122ab (patch) | |
tree | f75f7b807e82380a5887904da811e30bcd0080d2 /sbin/ipsec/photurisd/schedule.c | |
parent | fa79aa45758f5d39df3dec3f6773a2299f799321 (diff) |
make startkey grok more, make users grok more + tiny protocol fixes.
Diffstat (limited to 'sbin/ipsec/photurisd/schedule.c')
-rw-r--r-- | sbin/ipsec/photurisd/schedule.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/ipsec/photurisd/schedule.c b/sbin/ipsec/photurisd/schedule.c index bd81cd8c0d1..793be76a5af 100644 --- a/sbin/ipsec/photurisd/schedule.c +++ b/sbin/ipsec/photurisd/schedule.c @@ -35,7 +35,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: schedule.c,v 1.1 1997/07/18 22:48:50 provos Exp $"; +static char rcsid[] = "$Id: schedule.c,v 1.2 1997/07/22 11:18:24 provos Exp $"; #endif #define _SCHEDULE_C_ @@ -204,18 +204,18 @@ schedule_process(int sock) tmp->tm = time(NULL) + REKEY_TIMEOUT; break; case MODULUS: -#ifdef DEBUG +#ifdef DEBUG2 printf("Checking moduli\n"); #endif mod_check_prime(MOD_PRIME_ITER, MOD_PRIME_TIME); tmp->tm = time(NULL) + MODULUS_TIMEOUT; break; case CLEANUP: -#ifdef DEBUG +#ifdef DEBUG2 printf("Cleaning up states\n"); #endif state_expire(); -#ifdef DEBUG +#ifdef DEBUG2 printf("Cleaning up SPI's\n"); #endif spi_expire(); |