svn commit: r264870 - stable/10/lib/libipsec

Christian Brueffer brueffer at FreeBSD.org
Thu Apr 24 10:23:36 UTC 2014


Author: brueffer
Date: Thu Apr 24 10:23:35 2014
New Revision: 264870
URL: http://svnweb.freebsd.org/changeset/base/264870

Log:
  MFC: r264585
  
  Add a missing break in the TCP case.
  
  Reviewed by:	bms

Modified:
  stable/10/lib/libipsec/ipsec_dump_policy.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libipsec/ipsec_dump_policy.c
==============================================================================
--- stable/10/lib/libipsec/ipsec_dump_policy.c	Thu Apr 24 10:23:11 2014	(r264869)
+++ stable/10/lib/libipsec/ipsec_dump_policy.c	Thu Apr 24 10:23:35 2014	(r264870)
@@ -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-all mailing list