summaryrefslogtreecommitdiffstats
path: root/lib/libc/locale/setlocale.c
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1997-02-05 19:17:10 +0000
committerache <ache@FreeBSD.org>1997-02-05 19:17:10 +0000
commitb7803f6c96c45c04974507c2a5e6cc4d79d35539 (patch)
tree5c0889ec26924f4d270f1ecc1e35b1373fc60755 /lib/libc/locale/setlocale.c
parentc300efb53e9c56295df6f3145a4ddaa9428249aa (diff)
downloadFreeBSD-src-b7803f6c96c45c04974507c2a5e6cc4d79d35539.zip
FreeBSD-src-b7803f6c96c45c04974507c2a5e6cc4d79d35539.tar.gz
Update the comment why range checking not needed
Fix setrunelocale fail if called directly without prior setlocale call Should go in 2.2
Diffstat (limited to 'lib/libc/locale/setlocale.c')
-rw-r--r--lib/libc/locale/setlocale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/locale/setlocale.c b/lib/libc/locale/setlocale.c
index 6d6041d..0a4bbc9 100644
--- a/lib/libc/locale/setlocale.c
+++ b/lib/libc/locale/setlocale.c
@@ -302,7 +302,7 @@ const char *encoding;
return(0);
if (!_PathLocale)
return(1);
- /* Range checking already done at upper level caller */
+ /* Range checking not needed, encoding has fixed size */
strcpy(name, _PathLocale);
strcat(name, "/");
strcat(name, encoding);
OpenPOWER on IntegriCloud