svn commit: r264872 - stable/8/lib/libipsec
Christian Brueffer
brueffer at FreeBSD.org
Thu Apr 24 10:27:22 UTC 2014
Author: brueffer
Date: Thu Apr 24 10:27:21 2014
New Revision: 264872
URL: http://svnweb.freebsd.org/changeset/base/264872
Log:
MFC: r264585
Add a missing break in the TCP case.
Reviewed by: bms
Modified:
stable/8/lib/libipsec/ipsec_dump_policy.c
Directory Properties:
stable/8/lib/libipsec/ (props changed)
Modified: stable/8/lib/libipsec/ipsec_dump_policy.c
==============================================================================
--- stable/8/lib/libipsec/ipsec_dump_policy.c Thu Apr 24 10:25:32 2014 (r264871)
+++ stable/8/lib/libipsec/ipsec_dump_policy.c Thu Apr 24 10:27:21 2014 (r264872)
@@ -198,6 +198,7 @@ ipsec_dump_ipsecrequest(buf, len, xisr,
break;
case IPPROTO_TCP:
proto = "tcp";
+ break;
default:
__ipsec_errcode = EIPSEC_INVAL_PROTO;
return NULL;
More information about the svn-src-stable
mailing list