diff options
Diffstat (limited to 'networking/arping.c')
-rw-r--r-- | networking/arping.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/arping.c b/networking/arping.c index 721368273..303e49935 100644 --- a/networking/arping.c +++ b/networking/arping.c | |||
@@ -293,7 +293,7 @@ int arping_main(int argc, char **argv) | |||
293 | if (opt & 128) /* timeout */ | 293 | if (opt & 128) /* timeout */ |
294 | timeout = atoi(_timeout); | 294 | timeout = atoi(_timeout); |
295 | if (opt & 256) { /* interface */ | 295 | if (opt & 256) { /* interface */ |
296 | if (bb_strlen(_device) > IF_NAMESIZE) { | 296 | if (strlen(_device) > IF_NAMESIZE) { |
297 | bb_error_msg_and_die("Interface name `%s' must be less than %d", | 297 | bb_error_msg_and_die("Interface name `%s' must be less than %d", |
298 | _device, IF_NAMESIZE); | 298 | _device, IF_NAMESIZE); |
299 | } | 299 | } |