From: Denis Vlasenko Date: Sun, 30 Sep 2007 16:04:21 +0000 (-0000) Subject: libiproute: add missing break's X-Git-Tag: 1_8_0~111 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1eecaf26b0025e91183f18dc5fd686e8832f8ee2;p=oweals%2Fbusybox.git libiproute: add missing break's --- diff --git a/networking/libiproute/iproute.c b/networking/libiproute/iproute.c index fbc721049..91811117c 100644 --- a/networking/libiproute/iproute.c +++ b/networking/libiproute/iproute.c @@ -858,10 +858,13 @@ int do_iproute(int argc, char **argv) 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: