svn commit: r272603 - stable/10/usr.bin/sort

Baptiste Daroussin bapt at FreeBSD.org
Mon Oct 6 09:15:10 UTC 2014


Author: bapt
Date: Mon Oct  6 09:15:09 2014
New Revision: 272603
URL: https://svnweb.freebsd.org/changeset/base/272603

Log:
  MFC: r272398
  
  Make sure to not skip any argument when converting from deprecated
  +POS1, -POS2 to -kPOS1,POS2, so that sort +0n gets translated to sort -k1,1n
  as it is expected
  
  PR:		193994
  Submitted by:	rodrigo
  MFC after:	3 days

Modified:
  stable/10/usr.bin/sort/sort.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.bin/sort/sort.c
==============================================================================
--- stable/10/usr.bin/sort/sort.c	Mon Oct  6 09:00:53 2014	(r272602)
+++ stable/10/usr.bin/sort/sort.c	Mon Oct  6 09:15:09 2014	(r272603)
@@ -897,7 +897,7 @@ fix_obsolete_keys(int *argc, char **argv
 						}
 					}
 				}
-				sprintf(sopt, "-k%d.%d", f1, c1);
+				sprintf(sopt, "-k%d.%d%s", f1, c1, sopts1);
 				argv[i] = sort_strdup(sopt);
 			}
 		}


More information about the svn-src-all mailing list