fix dependencies of FEATURE_GETOPT_LONG
authorDenys Vlasenko <vda.linux@googlemail.com>
Sat, 4 Jul 2009 14:50:43 +0000 (16:50 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sat, 4 Jul 2009 14:50:43 +0000 (16:50 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
e2fsprogs/old_e2fsprogs/e2fsck.c
editors/vi.c
examples/inittab
miscutils/hdparm.c
networking/arping.c
util-linux/Config.in

index d1f8d1ecb9f7525e4df7b9935a8171e8e8652f3e..6531f5d16d29d3e0ca574eba646bb6df8d641f4c 100644 (file)
@@ -1886,7 +1886,7 @@ static void e2fsck_journal_reset_super(e2fsck_t ctx, journal_superblock_t *jsb,
        int i;
 
        /* Leave a valid existing V1 superblock signature alone.
-        * Anything unrecognisable we overwrite with a new V2
+        * Anything unrecognizable we overwrite with a new V2
         * signature. */
 
        if (jsb->s_header.h_magic != htonl(JFS_MAGIC_NUMBER) ||
index b5696fb28c6d1d95bdf2f6c612a42c4897539a94..31a1edc9fa2b509cf7ad6428e47b3e6a6c061bc4 100644 (file)
@@ -687,7 +687,7 @@ static char *get_one_address(char *p, int *addr)    // get colon addr, if present
                sscanf(p, "%d%n", addr, &st);
                p += st;
        } else {
-               // unrecognised address - assume -1
+               // unrecognized address - assume -1
                *addr = -1;
        }
        return p;
@@ -2979,7 +2979,7 @@ static void do_cmd(int c)
                //case '`':     // `-
                //case 'u':     // u- FIXME- there is no undo
                //case 'v':     // v-
-       default:                        // unrecognised command
+       default:                        // unrecognized command
                buf[0] = c;
                buf[1] = '\0';
                if (c < ' ') {
@@ -3356,7 +3356,7 @@ static void do_cmd(int c)
                } else if (sscanf(p, "%d", &j) > 0) {
                        dot = find_line(j);             // go to line # j
                        dot_skip_over_ws();
-               } else {                // unrecognised cmd
+               } else {                // unrecognized cmd
                        not_implemented(p);
                }
 #endif /* !FEATURE_VI_COLON */
index 5f2af8724ba920c7f50a64c2c8225d675200b376..64fc4fce125402fdd2d4d0670de698335010edfa 100644 (file)
@@ -30,7 +30,7 @@
 #       console." and then waits for the user to press enter before starting
 #       the specified process.
 #
-#       Note: unrecognised actions (like initdefault) will cause init to emit
+#       Note: unrecognized actions (like initdefault) will cause init to emit
 #       an error message, and then go along with its business.
 #
 # <process>: Specifies the process to be executed and it's command line.
index 0d374ca4ae7ff8e550000dd00f3ea23ef0905d73..e8a483830ca6cfb62ca51e1708b15072e57e4f04 100644 (file)
@@ -675,7 +675,7 @@ static void identify(uint16_t *val)
        swab(val, buf, sizeof(buf));
        val = buf;
 #endif
-       /* check if we recognise the device type */
+       /* check if we recognize the device type */
        bb_putchar('\n');
        if (!(val[GEN_CONFIG] & NOT_ATA)) {
                dev = ATA_DEV;
index ab39c717b6c7249a5ff4ff6dd73555fdd20d7ef5..71690cf30de7acfc9e8fd99cfd76ec9e390c4425 100644 (file)
@@ -169,7 +169,7 @@ static bool recv_pack(unsigned char *buf, int len, struct sockaddr_ll *FROM)
         && FROM->sll_pkttype != PACKET_MULTICAST)
                return false;
 
-       /* Only these types are recognised */
+       /* Only these types are recognized */
        if (ah->ar_op != htons(ARPOP_REQUEST) && ah->ar_op != htons(ARPOP_REPLY))
                return false;
 
index 559e4c17a3752fad1e513b332d1aaeebfad55fca..5f5adc0fe4a7b2fd066fdef7bc369b4bbbb3a5b6 100644 (file)
@@ -253,9 +253,9 @@ config GETOPT
 config FEATURE_GETOPT_LONG
        bool "Support option -l"
        default y if LONG_OPTS
+       depends on GETOPT
        help
-         Enable support for recognising long options using the -l option to
-         getopt.
+         Enable support for long options (option -l).
 
 config HEXDUMP
        bool "hexdump"