bb_INET_default[] is really just a const "default",
nothing INET-specific
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -125,7 +125,7 @@ int get_addr_1(inet_prefix * addr, char *name, int family)
|
||||
|
||||
memset(addr, 0, sizeof(*addr));
|
||||
|
||||
if (strcmp(name, bb_INET_default) == 0 ||
|
||||
if (strcmp(name, bb_str_default) == 0 ||
|
||||
strcmp(name, "all") == 0 || strcmp(name, "any") == 0) {
|
||||
addr->family = family;
|
||||
addr->bytelen = (family == AF_INET6 ? 16 : 4);
|
||||
@@ -169,7 +169,7 @@ int get_prefix_1(inet_prefix * dst, char *arg, int family)
|
||||
|
||||
memset(dst, 0, sizeof(*dst));
|
||||
|
||||
if (strcmp(arg, bb_INET_default) == 0 || strcmp(arg, "any") == 0) {
|
||||
if (strcmp(arg, bb_str_default) == 0 || strcmp(arg, "any") == 0) {
|
||||
dst->family = family;
|
||||
dst->bytelen = 0;
|
||||
dst->bitlen = 0;
|
||||
|
||||
@@ -186,7 +186,7 @@ static void INET_setroute(int action, char **args)
|
||||
#endif
|
||||
} else {
|
||||
/* Default netmask. */
|
||||
netmask = bb_INET_default;
|
||||
netmask = bb_str_default;
|
||||
}
|
||||
/* Prefer hostname lookup is -host flag (xflag==1) was given. */
|
||||
isnet = INET_resolve(target, (struct sockaddr_in *) &rt.rt_dst,
|
||||
@@ -346,7 +346,7 @@ static void INET6_setroute(int action, char **args)
|
||||
/* We know args isn't NULL from the check in route_main. */
|
||||
const char *target = *args++;
|
||||
|
||||
if (strcmp(target, bb_INET_default) == 0) {
|
||||
if (strcmp(target, bb_str_default) == 0) {
|
||||
prefix_len = 0;
|
||||
memset(&sa6, 0, sizeof(sa6));
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user