restore compare_string_array new interface (make broken by landley)
author"Vladimir N. Oleynik" <dzo@simtreas.ru>
Tue, 6 Dec 2005 12:00:39 +0000 (12:00 -0000)
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>
Tue, 6 Dec 2005 12:00:39 +0000 (12:00 -0000)
include/libbb.h
miscutils/devfsd.c
networking/libiproute/ipaddress.c
networking/libiproute/iproute.c

index 96dc46a09b3158a88f91250d19c00ba9f219d0fd..52d91c8268d63766ad50d51880097f677c1a3125 100644 (file)
@@ -467,7 +467,7 @@ typedef struct {
 } procps_status_t;
 
 extern procps_status_t * procps_scan(int save_user_arg0);
-extern unsigned short compare_string_array(const char *string_array[], const char *key);
+extern int compare_string_array(const char * const string_array[], const char *key);
 
 extern int my_query_module(const char *name, int which, void **buf, size_t *bufsize, size_t *ret);
 
index cc1c5e1f080fdbb3503a181ecd22b299de3d2861..62d217345743d24cde0530bbd5221dad433547c6 100644 (file)
@@ -611,7 +611,7 @@ static void process_config_line (const char *line, unsigned long *event_mask)
                                                                "PERMISSIONS", "MODLOAD", "EXECUTE", "COPY", "IGNORE",
                                                                "MKOLDCOMPAT", "MKNEWCOMPAT","RMOLDCOMPAT", "RMNEWCOMPAT", 0 };
 
-       short int i;
+       int i;
 
        debug_msg_logger(LOG_INFO, __FUNCTION__);
 
@@ -1295,7 +1295,7 @@ static const char *get_variable (const char *variable, void *info)
        const char *field_names[] = { "hostname", "mntpt", "devpath", "devname",
                                                                   "uid", "gid", "mode", hostname, mount_point,
                                                                   gv_info->devpath, gv_info->devname, 0 };
-       short int i;
+       int i;
 
        debug_msg_logger(LOG_INFO, __FUNCTION__);
 
index 1c89f4a7dbbfdfba015d417dd23a4e854a5829b6..c6115b356ae2a534989c5bac76129c9df9864e45 100644 (file)
@@ -443,7 +443,7 @@ extern int ipaddr_list_or_flush(int argc, char **argv, int flush)
        }
 
        while (argc > 0) {
-               const unsigned short option_num = compare_string_array(option, *argv);
+               const int option_num = compare_string_array(option, *argv);
                switch (option_num) {
                        case 0: /* to */
                                NEXT_ARG();
@@ -658,7 +658,7 @@ static int ipaddr_modify(int cmd, int argc, char **argv)
        req.ifa.ifa_family = preferred_family;
 
        while (argc > 0) {
-               const unsigned short option_num = compare_string_array(option, *argv);
+               const int option_num = compare_string_array(option, *argv);
                switch (option_num) {
                        case 0: /* peer */
                        case 1: /* remote */
@@ -805,7 +805,7 @@ static int ipaddr_modify(int cmd, int argc, char **argv)
 extern int do_ipaddr(int argc, char **argv)
 {
        const char *commands[] = { "add", "delete", "list", "show", "lst", "flush", 0 };
-       unsigned short command_num = 2;
+       int command_num = 2;
 
        if (*argv) {
                command_num = compare_string_array(commands, *argv);
index cc229c2066f24093bdc6b50f8c050e5109cef807..d7900d62e41181e96148f7c0cb00aaad6d57c2b0 100644 (file)
@@ -654,7 +654,8 @@ static int iproute_get(int argc, char **argv)
        char  *odev = NULL;
        int connected = 0;
        int from_ok = 0;
-       const char *options[] = { "from", "iif", "oif", "dev", "notify", "connected", "to", 0 };
+       static const char * const options[] = 
+               { "from", "iif", "oif", "dev", "notify", "connected", "to", 0 };
 
        memset(&req, 0, sizeof(req));
 
@@ -813,9 +814,10 @@ static int iproute_get(int argc, char **argv)
 
 int do_iproute(int argc, char **argv)
 {
-       const char *ip_route_commands[] = { "add", "append", "change", "chg",
-               "delete", "del", "get", "list", "show", "prepend", "replace", "test", "flush", 0 };
-       unsigned short command_num = 7;
+       static const char * const ip_route_commands[] = 
+               { "add", "append", "change", "chg", "delete", "del", "get", 
+               "list", "show", "prepend", "replace", "test", "flush", 0 };
+       int command_num = 7;
        unsigned int flags = 0;
        int cmd = RTM_NEWROUTE;