diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-07 20:17:41 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-07 20:17:41 +0000 |
commit | 19008b83735341c91fa8a09a072ffe9816c9e423 (patch) | |
tree | 6e35288c247102998a775cbc16f9ec014e00e7fd /networking/ip.c | |
parent | 4c5ad2fc90389bf1239f17d84967d07b82f31dd7 (diff) | |
download | busybox-w32-19008b83735341c91fa8a09a072ffe9816c9e423.tar.gz busybox-w32-19008b83735341c91fa8a09a072ffe9816c9e423.tar.bz2 busybox-w32-19008b83735341c91fa8a09a072ffe9816c9e423.zip |
- reuse strings and messages. Saves about 600B
Diffstat (limited to 'networking/ip.c')
-rw-r--r-- | networking/ip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ip.c b/networking/ip.c index 9250484aa..bba70890d 100644 --- a/networking/ip.c +++ b/networking/ip.c | |||
@@ -59,7 +59,7 @@ void ip_parse_common_args(int *argcp, char ***argvp) | |||
59 | else if (strcmp(argv[1], "link") == 0) | 59 | else if (strcmp(argv[1], "link") == 0) |
60 | preferred_family = AF_PACKET; | 60 | preferred_family = AF_PACKET; |
61 | else | 61 | else |
62 | invarg(argv[1], "invalid protocol family"); | 62 | invarg(bb_msg_invalid_arg, argv[1], "-family"); |
63 | } else if (strcmp(opt, "-4") == 0) { | 63 | } else if (strcmp(opt, "-4") == 0) { |
64 | preferred_family = AF_INET; | 64 | preferred_family = AF_INET; |
65 | } else if (strcmp(opt, "-6") == 0) { | 65 | } else if (strcmp(opt, "-6") == 0) { |