diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-21 20:34:21 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-21 20:34:21 +0000 |
commit | 7ca3921e5e8aa64533d4d7a678046676ae6574ec (patch) | |
tree | 9736975246e991e626e025ab1c98d9f5536e9007 /networking/route.c | |
parent | 5096246ffb22b46b7d9e9debf035112a11d339b3 (diff) |
bb_INET_default[] is really just a const "default",
nothing INET-specific
Diffstat (limited to 'networking/route.c')
-rw-r--r-- | networking/route.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/route.c b/networking/route.c index c99405d72..f343d064c 100644 --- a/networking/route.c +++ b/networking/route.c @@ -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 { |