From e89450cac9b4b8c31d12491f35c09ec7af9ac345 Mon Sep 17 00:00:00 2001 From: delphij Date: Tue, 14 Dec 2010 01:28:33 +0000 Subject: We work on ctype's and not only on numbers so set LC_ALL instead of LC_NUMERIC. PR: bin/152934 Submitted by: Pedro F. Giffuni Obtained from: Illumos --- usr.bin/printf/printf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/printf/printf.c b/usr.bin/printf/printf.c index 1151855..451b15b 100644 --- a/usr.bin/printf/printf.c +++ b/usr.bin/printf/printf.c @@ -106,7 +106,7 @@ main(int argc, char *argv[]) char *format, *fmt, *start; #ifndef SHELL - (void) setlocale(LC_NUMERIC, ""); + (void) setlocale(LC_ALL, ""); #endif #ifdef SHELL optreset = 1; optind = 1; opterr = 0; /* initialize getopt */ -- cgit v1.1