diff options
author | Denis Vlasenko | 2006-11-21 00:09:37 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-21 00:09:37 +0000 |
commit | fcdb00f7359488d197ac3361dfbc49ccdead8b87 (patch) | |
tree | f9dae67bb1b22c7249c24e20b7f4ae82ec824d52 /coreutils/ls.c | |
parent | 6c85ddc8509e4b72ca5b4e47ca5085101a02f07c (diff) | |
download | busybox-fcdb00f7359488d197ac3361dfbc49ccdead8b87.zip busybox-fcdb00f7359488d197ac3361dfbc49ccdead8b87.tar.gz |
httpd: LC_TIME locale _must_ be POSIX to httpd! We speak over the net!
Diffstat (limited to 'coreutils/ls.c')
-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 8a83d75..909f4d5 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c @@ -359,7 +359,7 @@ static int sortcmp(const void *a, const void *b) } if (dif == 0) { - /* sort by name- may be a tie_breaker for time or size cmp */ + /* sort by name - may be a tie_breaker for time or size cmp */ if (ENABLE_LOCALE_SUPPORT) dif = strcoll(d1->name, d2->name); else dif = strcmp(d1->name, d2->name); } |