diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-01-26 12:12:53 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-01-26 12:12:53 +0000 |
commit | 82738242eab85d81e2feaeab25bffb41a75c7fc9 (patch) | |
tree | c735e19e340c11a2bfc3f90ad4a409e679c729f6 /sbin/isakmpd/sa.c | |
parent | bed310b398bdde15410b2af71828c4fcd9661d8a (diff) |
Pedantic style police
Diffstat (limited to 'sbin/isakmpd/sa.c')
-rw-r--r-- | sbin/isakmpd/sa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/isakmpd/sa.c b/sbin/isakmpd/sa.c index 93bfe78a5f1..0584adb9fcd 100644 --- a/sbin/isakmpd/sa.c +++ b/sbin/isakmpd/sa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sa.c,v 1.35 2001/01/22 08:14:24 angelos Exp $ */ +/* $OpenBSD: sa.c,v 1.36 2001/01/26 12:12:52 niklas Exp $ */ /* $EOM: sa.c,v 1.112 2000/12/12 00:22:52 niklas Exp $ */ /* @@ -783,7 +783,7 @@ sa_setup_expirations (struct sa *sa) = timer_add_event ("sa_soft_expire", sa_soft_expire, sa, &expiration); if (!sa->soft_death) { - /* If we don't give up we might start leaking... */ + /* If we don't give up we might start leaking... */ sa_delete (sa, 1); return -1; } @@ -801,7 +801,7 @@ sa_setup_expirations (struct sa *sa) = timer_add_event ("sa_hard_expire", sa_hard_expire, sa, &expiration); if (!sa->death) { - /* If we don't give up we might start leaking... */ + /* If we don't give up we might start leaking... */ sa_delete (sa, 1); return -1; } |