mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-07 22:00:06 +00:00
Update.
* locale/programs/ld-address.c (INT_STR_ELEM): Correct test for unknown character.
This commit is contained in:
parent
7508aab40a
commit
45a9eda2f9
@ -1,5 +1,8 @@
|
||||
2000-06-25 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* locale/programs/ld-address.c (INT_STR_ELEM): Correct test for
|
||||
unknown character.
|
||||
|
||||
* locale/programs/ld-collate.c: Correct handling of different
|
||||
collation sections.
|
||||
* locale/programs/localedef.c (add_to_readlist): Take locale pointer
|
||||
|
@ -520,7 +520,8 @@ address_read (struct linereader *ldfile, struct localedef_t *result,
|
||||
if (address->cat != NULL) \
|
||||
lr_error (ldfile, _("\
|
||||
%s: field `%s' declared more than once"), "LC_ADDRESS", #cat); \
|
||||
else if (!ignore_content && arg->val.str.startmb == NULL) \
|
||||
else if (!ignore_content && arg->tok == tok_string \
|
||||
&& arg->val.str.startmb == NULL) \
|
||||
{ \
|
||||
lr_error (ldfile, _("\
|
||||
%s: unknown character in field `%s'"), "LC_ADDRESS", #cat); \
|
||||
|
Loading…
Reference in New Issue
Block a user