From cd387f2554c62c7716970e90af54b8bde6c86c86 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sun, 27 Feb 2011 04:10:00 +0100 Subject: ls: fix one-bit-off which caused -H to behave as -h Signed-off-by: Denys Vlasenko --- coreutils/ls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils') 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 { OPTBIT_Z, /* 25 */ OPTBIT_L = OPTBIT_K + 2 * ENABLE_SELINUX, OPTBIT_H, /* 27 */ - OPTBIT_h = OPTBIT_L + 1 * ENABLE_FEATURE_LS_FOLLOWLINKS, + OPTBIT_h = OPTBIT_L + 2 * ENABLE_FEATURE_LS_FOLLOWLINKS, OPTBIT_T = OPTBIT_h + 2 * ENABLE_FEATURE_HUMAN_READABLE, OPTBIT_w, /* 30 */ OPTBIT_color = OPTBIT_T + 2 * ENABLE_FEATURE_AUTOWIDTH, -- cgit v1.2.3