diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-06-21 17:12:52 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-06-21 17:12:52 +0200 |
commit | 1e18a01fa2965ef967b99d519018e21c9b5f15af (patch) | |
tree | b76c9ea65545bfeaa76e822eed76f9b476a8ef32 /coreutils | |
parent | 33092f1003982fc26339c0fda66283805cfbcfb1 (diff) | |
download | busybox-1e18a01fa2965ef967b99d519018e21c9b5f15af.tar.gz |
ls: fix HAVE_STRVERSCMP check; add check for older uclibc versions
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-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 6080f59b6..f11eb4358 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c @@ -886,7 +886,7 @@ static int sortcmp(const void *a, const void *b) if (sort_opts == SORT_DIR) { dif = S_ISDIR(d2->dn_mode) - S_ISDIR(d1->dn_mode); } else -#ifdef HAVE_STRVERSCMP && HAVE_STRVERSCMP == 1 +#if defined(HAVE_STRVERSCMP) && HAVE_STRVERSCMP == 1 if (sort_opts == SORT_VERSION) { dif = strverscmp(d1->name, d2->name); } else |