[BACK]Return to file.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / sort

Diff for /src/usr.bin/sort/file.c between version 1.21 and 1.22

version 1.21, 2016/10/17 02:58:29 version 1.22, 2019/05/15 09:07:46
Line 1078 
Line 1078 
   
         if (!sm->Mflag && !sm->Rflag && !sm->Vflag &&          if (!sm->Mflag && !sm->Rflag && !sm->Vflag &&
             !sm->gflag && !sm->hflag && !sm->nflag) {              !sm->gflag && !sm->hflag && !sm->nflag) {
                 if ((sort_opts_vals.sort_method == SORT_DEFAULT) && byte_sort)                  if (sort_opts_vals.sort_method == SORT_DEFAULT &&
                       sort_mb_cur_max == 1)
                         sort_opts_vals.sort_method = SORT_RADIXSORT;                          sort_opts_vals.sort_method = SORT_RADIXSORT;
   
         } else if (sort_opts_vals.sort_method == SORT_RADIXSORT)          } else if (sort_opts_vals.sort_method == SORT_RADIXSORT)

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22