From 0206f596d5156af560e8af10e950d3cb2f29b73d Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 26 Jul 2014 04:43:50 -0400 Subject: add missing yes/no strings to nl_langinfo these were removed from the standard but still offered as an extension in langinfo.h, so nl_langinfo should support them. --- src/locale/langinfo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/locale/langinfo.c b/src/locale/langinfo.c index 657dd9c4..aa0e8de6 100644 --- a/src/locale/langinfo.c +++ b/src/locale/langinfo.c @@ -24,7 +24,7 @@ static const char c_time[] = "%a %b %e %T %Y\0" "%H:%M:%S"; -static const char c_messages[] = "^[yY]\0" "^[nN]"; +static const char c_messages[] = "^[yY]\0" "^[nN]\0" "yes\0" "no"; static const char c_numeric[] = ".\0" ""; char *__nl_langinfo_l(nl_item item, locale_t loc) @@ -49,7 +49,7 @@ char *__nl_langinfo_l(nl_item item, locale_t loc) str = ""; break; case LC_MESSAGES: - if (idx > 1) return NULL; + if (idx > 3) return NULL; str = c_messages; break; default: -- cgit v1.2.1