diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-08-10 00:51:29 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-08-10 00:51:29 +0200 |
commit | b47b3ce1bd651c689fae3cac2760f43f453e2b6e (patch) | |
tree | 792a1710799fbf57c66fa51a642ae6d5074640c5 /coreutils | |
parent | b347df91317ca05910e930c94fdba30baf9e2de8 (diff) | |
download | busybox-w32-b47b3ce1bd651c689fae3cac2760f43f453e2b6e.tar.gz busybox-w32-b47b3ce1bd651c689fae3cac2760f43f453e2b6e.tar.bz2 busybox-w32-b47b3ce1bd651c689fae3cac2760f43f453e2b6e.zip |
randomconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/ls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index f11eb4358..d5b25ee70 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -1111,7 +1111,7 @@ int ls_main(int argc UNUSED_PARAM, char **argv) | |||
1111 | IF_FEATURE_LS_COLOR(applet_long_options = ls_longopts;) | 1111 | IF_FEATURE_LS_COLOR(applet_long_options = ls_longopts;) |
1112 | opt_complementary = | 1112 | opt_complementary = |
1113 | /* -e implies -l */ | 1113 | /* -e implies -l */ |
1114 | "el" | 1114 | IF_FEATURE_LS_TIMESTAMPS("el") |
1115 | /* http://pubs.opengroup.org/onlinepubs/9699919799/utilities/ls.html: | 1115 | /* http://pubs.opengroup.org/onlinepubs/9699919799/utilities/ls.html: |
1116 | * in some pairs of opts, only last one takes effect: | 1116 | * in some pairs of opts, only last one takes effect: |
1117 | */ | 1117 | */ |
@@ -1121,7 +1121,7 @@ int ls_main(int argc UNUSED_PARAM, char **argv) | |||
1121 | ":C-xl:x-Cl:l-xC" /* bycols/bylines/long */ | 1121 | ":C-xl:x-Cl:l-xC" /* bycols/bylines/long */ |
1122 | ":C-1:1-C" /* bycols/oneline */ | 1122 | ":C-1:1-C" /* bycols/oneline */ |
1123 | ":x-1:1-x" /* bylines/oneline (not in SuS, but in GNU coreutils 8.4) */ | 1123 | ":x-1:1-x" /* bylines/oneline (not in SuS, but in GNU coreutils 8.4) */ |
1124 | ":c-u:u-c" /* mtime/atime */ | 1124 | IF_FEATURE_LS_TIMESTAMPS(":c-u:u-c") /* mtime/atime */ |
1125 | /* -w NUM: */ | 1125 | /* -w NUM: */ |
1126 | IF_FEATURE_AUTOWIDTH(":w+"); | 1126 | IF_FEATURE_AUTOWIDTH(":w+"); |
1127 | opt = getopt32(argv, ls_options | 1127 | opt = getopt32(argv, ls_options |