diff options
author | Denis Vlasenko | 2006-11-21 20:34:21 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-21 20:34:21 +0000 |
commit | 7ca3921e5e8aa64533d4d7a678046676ae6574ec (patch) | |
tree | 9736975246e991e626e025ab1c98d9f5536e9007 /networking/ifconfig.c | |
parent | 5096246ffb22b46b7d9e9debf035112a11d339b3 (diff) | |
download | busybox-7ca3921e5e8aa64533d4d7a678046676ae6574ec.zip busybox-7ca3921e5e8aa64533d4d7a678046676ae6574ec.tar.gz |
bb_INET_default[] is really just a const "default",
nothing INET-specific
Diffstat (limited to 'networking/ifconfig.c')
-rw-r--r-- | networking/ifconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ifconfig.c b/networking/ifconfig.c index 00dc455..05be7dc 100644 --- a/networking/ifconfig.c +++ b/networking/ifconfig.c @@ -394,7 +394,7 @@ int ifconfig_main(int argc, char **argv) sai.sin_family = AF_INET; sai.sin_port = 0; - if (!strcmp(host, bb_INET_default)) { + if (!strcmp(host, bb_str_default)) { /* Default is special, meaning 0.0.0.0. */ sai.sin_addr.s_addr = INADDR_ANY; #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS |