svn commit: r361962 - head/bin/ps

Yuri Pankov yuripv at FreeBSD.org
Tue Jun 9 07:07:30 UTC 2020


Author: yuripv
Date: Tue Jun  9 07:07:29 2020
New Revision: 361962
URL: https://svnweb.freebsd.org/changeset/base/361962

Log:
  ps: remove xo_no_setlocale() call
  
  Apparently libxo was fixed to do the right thing on FreeBSD,
  and calling xo_no_setlocale() is no longer needed.
  
  Reported by:	phil

Modified:
  head/bin/ps/ps.c

Modified: head/bin/ps/ps.c
==============================================================================
--- head/bin/ps/ps.c	Tue Jun  9 06:48:25 2020	(r361961)
+++ head/bin/ps/ps.c	Tue Jun  9 07:07:29 2020	(r361962)
@@ -192,7 +192,6 @@ main(int argc, char *argv[])
 	char fmtbuf[_POSIX2_LINE_MAX];
 
 	(void) setlocale(LC_ALL, "");
-	xo_no_setlocale();
 	time(&now);			/* Used by routines in print.c. */
 
 	/*


More information about the svn-src-head mailing list