traceroute: fix help text to not show -6 when traceroute6 is off
[oweals/busybox.git] / shell / lash_unused.c
index 2574987c5c07aa6be30ed3b083905a0ebeb16b4c..107ce88f6221379a69d439140d3dbf4943471c2b 100644 (file)
@@ -697,7 +697,7 @@ static char * strsep_space(char *string, int * ix)
 
        /* Find the end of any whitespace trailing behind
         * the token and let that be part of the token */
-       while (string[*ix] && (isspace)(string[*ix]) ) {
+       while (string[*ix] && isspace(string[*ix])) {
                (*ix)++;
        }
 
@@ -841,7 +841,7 @@ static int expand_arguments(char *command)
                                num_skip_chars = 1;
                        } else {
                                src = dst + 1;
-                               while ((isalnum)(*src) || *src == '_') src++;
+                               while (isalnum(*src) || *src == '_') src++;
                        }
                        if (src == NULL) {
                                src = dst+dstlen;