diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-04-01 00:51:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-04-01 00:51:57 +0000 |
commit | c3d0870737e92eca92e261e97367bca00fdee7a4 (patch) | |
tree | 6d00305215f1d6da1ebb52c21beffd8ac7ba22aa /locale | |
parent | 5bbbc42a2aad47d0086181f9a875422de6ed2c79 (diff) | |
download | glibc-c3d0870737e92eca92e261e97367bca00fdee7a4.tar glibc-c3d0870737e92eca92e261e97367bca00fdee7a4.tar.gz glibc-c3d0870737e92eca92e261e97367bca00fdee7a4.tar.bz2 glibc-c3d0870737e92eca92e261e97367bca00fdee7a4.zip |
Update.
2004-03-31 Ulrich Drepper <drepper@redhat.com>
* locale/programs/localedef.c (construct_output_path): Remove
remnants of CEN locale names.
Diffstat (limited to 'locale')
-rw-r--r-- | locale/programs/localedef.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/locale/programs/localedef.c b/locale/programs/localedef.c index f2c3c3b89c..b38ce6c53e 100644 --- a/locale/programs/localedef.c +++ b/locale/programs/localedef.c @@ -421,8 +421,7 @@ construct_output_path (char *path) startp = path; /* We must be prepared for finding a CEN name or a location of the introducing `.' where it is not possible anymore. */ - while (*startp != '\0' && *startp != '@' && *startp != '.' - && *startp != '+' && *startp != ',') + while (*startp != '\0' && *startp != '@' && *startp != '.') ++startp; if (*startp == '.') { |