diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-04-15 14:52:19 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-04-16 03:35:25 -0400 |
commit | a837257199ffab76237385b830cc7b6179fc2f18 (patch) | |
tree | 4451e3c99a082323859e0889310deeeaef901f14 /locale/programs/ld-address.c | |
parent | 7c84d5ce26f452fc08f6d9f7d6c13cf8831c5d49 (diff) | |
download | glibc-a837257199ffab76237385b830cc7b6179fc2f18.zip glibc-a837257199ffab76237385b830cc7b6179fc2f18.tar.gz glibc-a837257199ffab76237385b830cc7b6179fc2f18.tar.bz2 |
localedef: allow %l/%n in postal_fmt [BZ #16983]
ISO 14652/30112 includes %l & %n now, so permit them in our files.
Diffstat (limited to 'locale/programs/ld-address.c')
-rw-r--r-- | locale/programs/ld-address.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/locale/programs/ld-address.c b/locale/programs/ld-address.c index f133319..bfbdd62 100644 --- a/locale/programs/ld-address.c +++ b/locale/programs/ld-address.c @@ -150,8 +150,8 @@ No definition for %s category found"), "LC_ADDRESS")); } else { - /* We must check whether the format string contains only the - allowed escape sequences. */ + /* We must check whether the format string contains only the allowed + escape sequences. Last checked against ISO 30112 WD10 [2014]. */ const char *cp = address->postal_fmt; if (*cp == '\0') @@ -165,7 +165,7 @@ No definition for %s category found"), "LC_ADDRESS")); if (*++cp == 'R') /* Romanize-flag. */ ++cp; - if (strchr ("afdbshNtreCzTSc%", *cp) == NULL) + if (strchr ("nafdbshNtreClzTSc%", *cp) == NULL) { WITH_CUR_LOCALE (error (0, 0, _("\ %s: invalid escape `%%%c' sequence in field `%s'"), |