aboutsummaryrefslogtreecommitdiff
path: root/networking/libiproute/iplink.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/libiproute/iplink.c')
-rw-r--r--networking/libiproute/iplink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/libiproute/iplink.c b/networking/libiproute/iplink.c
index 2797f0250..9e30122c3 100644
--- a/networking/libiproute/iplink.c
+++ b/networking/libiproute/iplink.c
@@ -252,7 +252,7 @@ static int do_set(int argc, char **argv)
252 if (mtu != -1) 252 if (mtu != -1)
253 duparg("mtu", *argv); 253 duparg("mtu", *argv);
254 if (get_integer(&mtu, *argv, 0)) 254 if (get_integer(&mtu, *argv, 0))
255 invarg("Invalid \"mtu\" value\n", *argv); 255 invarg(*argv, "mtu");
256 } else if (strcmp(*argv, "multicast") == 0) { 256 } else if (strcmp(*argv, "multicast") == 0) {
257 NEXT_ARG(); 257 NEXT_ARG();
258 mask |= IFF_MULTICAST; 258 mask |= IFF_MULTICAST;
@@ -286,7 +286,7 @@ static int do_set(int argc, char **argv)
286 } 286 }
287 287
288 if (!dev) { 288 if (!dev) {
289 bb_error_msg("Not enough of information: \"dev\" argument is required."); 289 bb_error_msg(bb_msg_requires_arg, "\"dev\"");
290 exit(-1); 290 exit(-1);
291 } 291 }
292 292