diff options
author | Moritz Jodeit <moritz@cvs.openbsd.org> | 2007-04-08 11:20:32 +0000 |
---|---|---|
committer | Moritz Jodeit <moritz@cvs.openbsd.org> | 2007-04-08 11:20:32 +0000 |
commit | d6145f0b191a4ddfe43d99c20bbae87570604eab (patch) | |
tree | 56601ee4dd0b6c48f331591ed2b6839c1d677ff0 | |
parent | 0fffac0aeda088fd63bf322dbd132e2d801a43f2 (diff) |
Fix lint comments. s/Fall through/FALLTHROUGH/.
ok hshoexer@
-rw-r--r-- | sbin/isakmpd/pf_key_v2.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sbin/isakmpd/pf_key_v2.c b/sbin/isakmpd/pf_key_v2.c index 7390673bce8..edcc44adf46 100644 --- a/sbin/isakmpd/pf_key_v2.c +++ b/sbin/isakmpd/pf_key_v2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_key_v2.c,v 1.178 2007/02/19 09:43:34 hshoexer Exp $ */ +/* $OpenBSD: pf_key_v2.c,v 1.179 2007/04/08 11:20:31 moritz Exp $ */ /* $EOM: pf_key_v2.c,v 1.79 2000/12/12 00:33:19 niklas Exp $ */ /* @@ -2821,7 +2821,7 @@ pf_key_v2_acquire(struct pf_key_v2_msg *pmsg) case SADB_IDENTTYPE_FQDN: prefstring = "FQDN"; - /* Fall through */ + /*FALLTHROUGH*/ case SADB_IDENTTYPE_USERFQDN: if (!prefstring) { prefstring = "USER_FQDN"; @@ -2970,8 +2970,7 @@ pf_key_v2_acquire(struct pf_key_v2_msg *pmsg) case SADB_IDENTTYPE_FQDN: prefstring = "FQDN"; - /* Fall through */ - + /*FALLTHROUGH*/ case SADB_IDENTTYPE_USERFQDN: if (!prefstring) { prefstring = "USER_FQDN"; @@ -3431,8 +3430,7 @@ pf_key_v2_acquire(struct pf_key_v2_msg *pmsg) conf_end(af, 0); goto fail; } - } else /* Fall through */ - { + } else { xform = conf_get_str( "Default-phase-1-configuration", "Transforms"); |