#include "busybox.h"
//XXX just found out about libbb/messages.c . maybe move stuff there ? - ghoz
-const char msg_req_arg[] = "option `%s' requires an argument";
-const char msg_invalid_arg[] = "invalid argument `%s' to `%s'";
+static const char msg_req_arg[] = "option `%s' requires an argument";
+static const char msg_invalid_arg[] = "invalid argument `%s' to `%s'";
static char *pattern;
#include "utils.h"
#include "libbb.h"
+#include "inet_common.h"
int get_integer(int *val, char *arg, int base)
{
memset(addr, 0, sizeof(*addr));
- if (strcmp(name, "default") == 0 ||
+ if (strcmp(name, bb_INET_default) == 0 ||
strcmp(name, "all") == 0 || strcmp(name, "any") == 0) {
addr->family = family;
addr->bytelen = (family == AF_INET6 ? 16 : 4);
memset(dst, 0, sizeof(*dst));
- if (strcmp(arg, "default") == 0 || strcmp(arg, "any") == 0) {
+ if (strcmp(arg, bb_INET_default) == 0 || strcmp(arg, "any") == 0) {
dst->family = family;
dst->bytelen = 0;
dst->bitlen = 0;
/* We know args isn't NULL from the check in route_main. */
const char *target = *args++;
- if (strcmp(target, "default") == 0) {
+ if (strcmp(target, bb_INET_default) == 0) {
prefix_len = 0;
memset(&sa6, 0, sizeof(sa6));
} else {