Author: gabor
Date: Thu May 17 13:08:30 2012
New Revision: 235546
URL: http://svn.freebsd.org/changeset/base/235546
Log:
  - Fix -o option that was broken by my clang compile fix
  
  Submitted by: Oleg Moskalenko <oleg.moskale...@citrix.com>

Modified:
  head/usr.bin/sort/sort.c

Modified: head/usr.bin/sort/sort.c
==============================================================================
--- head/usr.bin/sort/sort.c    Thu May 17 11:53:38 2012        (r235545)
+++ head/usr.bin/sort/sort.c    Thu May 17 13:08:30 2012        (r235546)
@@ -1049,9 +1049,8 @@ main(int argc, char **argv)
                                sort_opts_vals.mflag = true;
                                break;
                        case 'o':
-                               outfile = sort_realloc(outfile, sizeof(char) *
-                                   (strlen(optarg) + 1));
-                               strlcpy(outfile, optarg, strlen(outfile));
+                               outfile = sort_realloc(outfile, (strlen(optarg) 
+ 1));
+                               strcpy(outfile, optarg);
                                break;
                        case 's':
                                sort_opts_vals.sflag = true;
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to