* locale/programs/ld-address.c (INT_STR_ELEM): Correct test for
	unknown character.
This commit is contained in:
Ulrich Drepper 2000-06-25 20:26:58 +00:00
parent 7508aab40a
commit 45a9eda2f9
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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); \