Procházet zdrojové kódy

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.

(cherry picked from commit 0206f596d5156af560e8af10e950d3cb2f29b73d)
Rich Felker před 10 roky
rodič
revize
af7a02a191
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      src/locale/langinfo.c

+ 2 - 2
src/locale/langinfo.c

@@ -23,7 +23,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)
@@ -48,7 +48,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: