diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-02-27 04:10:00 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-02-27 04:10:00 +0100 |
commit | cd387f2554c62c7716970e90af54b8bde6c86c86 (patch) | |
tree | 143575d5c53f663edcbee692e05d3b5d935aa1e4 | |
parent | 143c5baf6c2471c7f695e5e20da865f9e799ffbd (diff) | |
download | busybox-w32-cd387f2554c62c7716970e90af54b8bde6c86c86.tar.gz busybox-w32-cd387f2554c62c7716970e90af54b8bde6c86c86.tar.bz2 busybox-w32-cd387f2554c62c7716970e90af54b8bde6c86c86.zip |
ls: fix one-bit-off which caused -H to behave as -h
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | coreutils/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index 2be3afadf..2242fbaac 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -234,7 +234,7 @@ enum { | |||
234 | OPTBIT_Z, /* 25 */ | 234 | OPTBIT_Z, /* 25 */ |
235 | OPTBIT_L = OPTBIT_K + 2 * ENABLE_SELINUX, | 235 | OPTBIT_L = OPTBIT_K + 2 * ENABLE_SELINUX, |
236 | OPTBIT_H, /* 27 */ | 236 | OPTBIT_H, /* 27 */ |
237 | OPTBIT_h = OPTBIT_L + 1 * ENABLE_FEATURE_LS_FOLLOWLINKS, | 237 | OPTBIT_h = OPTBIT_L + 2 * ENABLE_FEATURE_LS_FOLLOWLINKS, |
238 | OPTBIT_T = OPTBIT_h + 2 * ENABLE_FEATURE_HUMAN_READABLE, | 238 | OPTBIT_T = OPTBIT_h + 2 * ENABLE_FEATURE_HUMAN_READABLE, |
239 | OPTBIT_w, /* 30 */ | 239 | OPTBIT_w, /* 30 */ |
240 | OPTBIT_color = OPTBIT_T + 2 * ENABLE_FEATURE_AUTOWIDTH, | 240 | OPTBIT_color = OPTBIT_T + 2 * ENABLE_FEATURE_AUTOWIDTH, |