Explorar o código

fix regression in setlocale for LC_ALL with per-category setting

commit d88e5dfa8b989dafff4b748bfb3cba3512c8482e inadvertently changed
the argument pased to __get_locale from part (the current ;-delimited
component) to name (the full string).
Rich Felker %!s(int64=6) %!d(string=hai) anos
pai
achega
04e18b61df
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/locale/setlocale.c

+ 1 - 1
src/locale/setlocale.c

@@ -34,7 +34,7 @@ char *setlocale(int cat, const char *name)
 					part[z-p] = 0;
 					if (*z) p = z+1;
 				}
-				lm = __get_locale(i, name);
+				lm = __get_locale(i, part);
 				if (lm == LOC_MAP_FAILED) {
 					UNLOCK(lock);
 					return 0;