* locale/findlocale.c (_nl_find_locale): Add new parameter to
	calls of _nl_make_l10nflist.
This commit is contained in:
Ulrich Drepper 2000-05-04 04:11:22 +00:00
parent 17c389fc2b
commit 229c86ead7
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2000-05-03 Ulrich Drepper <drepper@redhat.com> 2000-05-03 Ulrich Drepper <drepper@redhat.com>
* locale/findlocale.c (_nl_find_locale): Add new parameter to
calls of _nl_make_l10nflist.
* libio/stdio.h: Make fseeko and ftello prototypes available is * libio/stdio.h: Make fseeko and ftello prototypes available is
__USE_LARGEFILE. Patch by Paul Eggert <eggert@twinsun.com>. __USE_LARGEFILE. Patch by Paul Eggert <eggert@twinsun.com>.

View File

@ -121,7 +121,7 @@ _nl_find_locale (const char *locale_path, size_t locale_path_len,
language, territory, codeset, language, territory, codeset,
normalized_codeset, modifier, special, normalized_codeset, modifier, special,
sponsor, revision, sponsor, revision,
_nl_category_names[category], 0); _nl_category_names[category], NULL, 0);
if (locale_file == NULL) if (locale_file == NULL)
{ {
@ -132,7 +132,7 @@ _nl_find_locale (const char *locale_path, size_t locale_path_len,
language, territory, codeset, language, territory, codeset,
normalized_codeset, modifier, special, normalized_codeset, modifier, special,
sponsor, revision, sponsor, revision,
_nl_category_names[category], 1); _nl_category_names[category], NULL, 1);
if (locale_file == NULL) if (locale_file == NULL)
/* This means we are out of core. */ /* This means we are out of core. */
return NULL; return NULL;