svn commit: trunk/busybox/networking/libiproute

vda at busybox.net vda at busybox.net
Sun Sep 30 16:04:22 UTC 2007


Author: vda
Date: 2007-09-30 09:04:21 -0700 (Sun, 30 Sep 2007)
New Revision: 20144

Log:
libiproute: add missing break's



Modified:
   trunk/busybox/networking/libiproute/iproute.c


Changeset:
Modified: trunk/busybox/networking/libiproute/iproute.c
===================================================================
--- trunk/busybox/networking/libiproute/iproute.c	2007-09-30 12:50:25 UTC (rev 20143)
+++ trunk/busybox/networking/libiproute/iproute.c	2007-09-30 16:04:21 UTC (rev 20144)
@@ -858,10 +858,13 @@
 			return iproute_list_or_flush(argc-1, argv+1, 0);
 		case 8: /* prepend */
 			flags = NLM_F_CREATE;
+			break;
 		case 9: /* replace */
 			flags = NLM_F_CREATE|NLM_F_REPLACE;
+			break;
 		case 10: /* test */
 			flags = NLM_F_EXCL;
+			break;
 		case 11: /* flush */
 			return iproute_list_or_flush(argc-1, argv+1, 1);
 		default:




More information about the busybox-cvs mailing list