From bf777da6b14186e0be2240ca2a83724d32fe0644 Mon Sep 17 00:00:00 2001 From: VANHULLEBUS Yvan Date: Thu, 19 Mar 2009 15:44:13 +0000 Subject: [PATCH] Fixed style for some comments Approved by: gnn(mentor) --- sys/netipsec/key.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sys/netipsec/key.c b/sys/netipsec/key.c index 7956a8d1cf6a..241adb9aa011 100644 --- a/sys/netipsec/key.c +++ b/sys/netipsec/key.c @@ -2687,7 +2687,9 @@ key_delsah(sah) if (sav->refcnt == 0) { /* sanity check */ KEY_CHKSASTATE(state, sav->state, __func__); - /* do NOT call KEY_FREESAV here: it will only delete the sav if refcnt == 1, + /* + * do NOT call KEY_FREESAV here: + * it will only delete the sav if refcnt == 1, * where we already know that refcnt == 0 */ key_delsav(sav); @@ -4134,8 +4136,7 @@ key_flush_sad(time_t now) /* if LARVAL entry doesn't become MATURE, delete it. */ LIST_FOREACH_SAFE(sav, &sah->savtree[SADB_SASTATE_LARVAL], chain, nextsav) { - /* Need to also check refcnt for a larval SA ??? - */ + /* Need to also check refcnt for a larval SA ??? */ if (now - sav->created > V_key_larval_lifetime) KEY_FREESAV(&sav); }