From 229c86ead7062461ba689676ab8676a0ca268aee Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 4 May 2000 04:11:22 +0000 Subject: [PATCH] Update. * locale/findlocale.c (_nl_find_locale): Add new parameter to calls of _nl_make_l10nflist. --- ChangeLog | 3 +++ locale/findlocale.c | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fc32d75..8a7c733 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2000-05-03 Ulrich Drepper + * 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 __USE_LARGEFILE. Patch by Paul Eggert . diff --git a/locale/findlocale.c b/locale/findlocale.c index 979b90f..60d318b 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; -- 2.7.4