diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-05-04 04:11:22 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-05-04 04:11:22 +0000 |
commit | 229c86ead7062461ba689676ab8676a0ca268aee (patch) | |
tree | 53a263c90f9ffec751cc0f011e88c641a9b32a13 /locale | |
parent | 17c389fc2b8bdc74ae136c933988ad5d89f6350e (diff) | |
download | glibc-229c86ead7062461ba689676ab8676a0ca268aee.tar glibc-229c86ead7062461ba689676ab8676a0ca268aee.tar.gz glibc-229c86ead7062461ba689676ab8676a0ca268aee.tar.bz2 glibc-229c86ead7062461ba689676ab8676a0ca268aee.zip |
Update.
* locale/findlocale.c (_nl_find_locale): Add new parameter to
calls of _nl_make_l10nflist.
Diffstat (limited to 'locale')
-rw-r--r-- | locale/findlocale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/locale/findlocale.c b/locale/findlocale.c index 979b90fe88..60d318b378 100644 --- a/locale/findlocale.c +++ b/locale/findlocale.c @@ -121,7 +121,7 @@ _nl_find_locale (const char *locale_path, size_t locale_path_len, language, territory, codeset, normalized_codeset, modifier, special, sponsor, revision, - _nl_category_names[category], 0); + _nl_category_names[category], NULL, 0); if (locale_file == NULL) { @@ -132,7 +132,7 @@ _nl_find_locale (const char *locale_path, size_t locale_path_len, language, territory, codeset, normalized_codeset, modifier, special, sponsor, revision, - _nl_category_names[category], 1); + _nl_category_names[category], NULL, 1); if (locale_file == NULL) /* This means we are out of core. */ return NULL; |