svn commit: r200186 - stable/8/usr.bin/perror

Edwin Groothuis edwin at FreeBSD.org
Sun Dec 6 21:07:47 UTC 2009


Author: edwin
Date: Sun Dec  6 21:07:47 2009
New Revision: 200186
URL: http://svn.freebsd.org/changeset/base/200186

Log:
  MFC of r199642
  
  The output of perror(1) is now showing local messages for locales
  supported by libc/nls
  
  PR:             bin/140499
  Approved by:    gnn@

Modified:
  stable/8/usr.bin/perror/perror.c
Directory Properties:
  stable/8/usr.bin/perror/   (props changed)

Modified: stable/8/usr.bin/perror/perror.c
==============================================================================
--- stable/8/usr.bin/perror/perror.c	Sun Dec  6 20:30:21 2009	(r200185)
+++ stable/8/usr.bin/perror/perror.c	Sun Dec  6 21:07:47 2009	(r200186)
@@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$");
 #include <stdlib.h>
 #include <string.h>
 #include <err.h>
+#include <locale.h>
 #include <sys/errno.h>
 
 static void usage(void);
@@ -43,6 +44,7 @@ main(int argc, char **argv)
 	char *errstr;
 	long errnum;
 
+	(void) setlocale(LC_MESSAGES, "");
 	if (argc != 2)
 		usage();
 


More information about the svn-src-stable-8 mailing list