svn commit: r264871 - stable/9/lib/libipsec
Christian Brueffer
brueffer at FreeBSD.org
Thu Apr 24 10:25:33 UTC 2014
Author: brueffer
Date: Thu Apr 24 10:25:32 2014
New Revision: 264871
URL: http://svnweb.freebsd.org/changeset/base/264871
Log:
MFC: r264585
Add a missing break in the TCP case.
Reviewed by: bms
Modified:
stable/9/lib/libipsec/ipsec_dump_policy.c
Directory Properties:
stable/9/lib/libipsec/ (props changed)
Modified: stable/9/lib/libipsec/ipsec_dump_policy.c
==============================================================================
--- stable/9/lib/libipsec/ipsec_dump_policy.c Thu Apr 24 10:23:35 2014 (r264870)
+++ stable/9/lib/libipsec/ipsec_dump_policy.c Thu Apr 24 10:25:32 2014 (r264871)
@@ -199,6 +199,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-9
mailing list