aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/ls.c22
1 files changed, 15 insertions, 7 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c
index dec0f85f3..ee734734e 100644
--- a/coreutils/ls.c
+++ b/coreutils/ls.c
@@ -874,19 +874,27 @@ static int sortcmp(const void *a, const void *b)
874 // instead of branch forest 874 // instead of branch forest
875 if (sort_opts == SORT_SIZE) { 875 if (sort_opts == SORT_SIZE) {
876 dif = (d2->dn_size - d1->dn_size); 876 dif = (d2->dn_size - d1->dn_size);
877 } else if (sort_opts == SORT_ATIME) { 877 } else
878 if (sort_opts == SORT_ATIME) {
878 dif = (d2->dn_atime - d1->dn_atime); 879 dif = (d2->dn_atime - d1->dn_atime);
879 } else if (sort_opts == SORT_CTIME) { 880 } else
881 if (sort_opts == SORT_CTIME) {
880 dif = (d2->dn_ctime - d1->dn_ctime); 882 dif = (d2->dn_ctime - d1->dn_ctime);
881 } else if (sort_opts == SORT_MTIME) { 883 } else
884 if (sort_opts == SORT_MTIME) {
882 dif = (d2->dn_mtime - d1->dn_mtime); 885 dif = (d2->dn_mtime - d1->dn_mtime);
883 } else if (sort_opts == SORT_DIR) { 886 } else
887 if (sort_opts == SORT_DIR) {
884 dif = S_ISDIR(d2->dn_mode) - S_ISDIR(d1->dn_mode); 888 dif = S_ISDIR(d2->dn_mode) - S_ISDIR(d1->dn_mode);
885 /* } else if (sort_opts == SORT_VERSION) { */ 889 } else
886 /* } else if (sort_opts == SORT_EXT) { */ 890 if (sort_opts == SORT_VERSION) {
891 dif = strverscmp(d1->name, d2->name);
892 } else
893 if (sort_opts == SORT_EXT) {
894 dif = strcmp(strchrnul(d1->name, '.'), strchrnul(d2->name, '.'));
887 } 895 }
888 if (dif == 0) { 896 if (dif == 0) {
889 /* sort by name, or tie_breaker for other sorts */ 897 /* sort by name, use as tie breaker for other sorts */
890 if (ENABLE_LOCALE_SUPPORT) 898 if (ENABLE_LOCALE_SUPPORT)
891 dif = strcoll(d1->name, d2->name); 899 dif = strcoll(d1->name, d2->name);
892 else 900 else