diff options
Diffstat (limited to 'locale/programs/localedef.c')
-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 == '.') { |