From 04a6f8c58c26d076f7f02ff5dd23f3532e252101 Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Sat, 11 Sep 2010 07:50:43 -0700 Subject: [PATCH] 169 Lack of "rune" wctype breaks tr -C Reviewed by: loki@animata.net Approved by: richlowe@richlowe.net --- usr/src/lib/libc/port/locale/wctype.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr/src/lib/libc/port/locale/wctype.c b/usr/src/lib/libc/port/locale/wctype.c index 22d28340ba..0147f56a16 100644 --- a/usr/src/lib/libc/port/locale/wctype.c +++ b/usr/src/lib/libc/port/locale/wctype.c @@ -57,7 +57,8 @@ wctype(const char *property) { "ideogram", _CTYPE_I }, /* BSD extension */ { "special", _CTYPE_T }, /* BSD extension */ { "phonogram", _CTYPE_Q }, /* BSD extension */ - { NULL, 0UL }, /* Default */ + { "rune", -1 }, /* BSD extension */ + { NULL, 0 }, /* Default */ }; int i; -- 2.11.4.GIT