]> sourceware.org Git - glibc.git/commitdiff
localedata: bs_BA: fix yesexpr/noexpr [BZ #20974]
authorMike Frysinger <vapier@gentoo.org>
Thu, 15 Dec 2016 23:34:05 +0000 (18:34 -0500)
committerMike Frysinger <vapier@gentoo.org>
Fri, 30 Dec 2016 06:49:53 +0000 (01:49 -0500)
Both regexes end with a "*." which means the previous match can be
omitted, and then the . allows them to match any input at all.

This means tools like coreutils' `rm -i` will always delete things
when prompted because the yesexpr regex matches all inputs (even
the negative ones).

localedata/ChangeLog
localedata/locales/bs_BA

index cb514baae3290633d8515602590e7c34e3595bf2..21c297e76aaded6b5de89802dd71aaa2576aacb9 100644 (file)
@@ -1,3 +1,9 @@
+2016-12-30  Mike Frysinger  <vapier@gentoo.org>
+
+       [BZ #20974]
+       * localedata/bs_BA (LC_MESSAGES): Delete "*." from the end of
+       yesexpr and noexpr.
+
 2016-11-26  Mike Frysinger  <vapier@gentoo.org>
 
        [BZ #20864]
index a47f87eb373d7f559d9f17db411f46f0a73d2110..68c2f9471a09c8f6b9203c81cbf9ebd03662ef65 100644 (file)
@@ -148,8 +148,8 @@ copy "en_DK"
 END LC_CTYPE
 
 LC_MESSAGES
-yesexpr "<U005E><U005B><U002B><U0031><U0064><U0044><U0079><U0059><U005D><U002A><U002E>"
-noexpr  "<U005E><U005B><U002D><U0030><U006E><U004E><U005D><U002A><U002E>"
+yesexpr "<U005E><U005B><U002B><U0031><U0064><U0044><U0079><U0059><U005D>"
+noexpr  "<U005E><U005B><U002D><U0030><U006E><U004E><U005D>"
 yesstr  "<U0064><U0061>"
 nostr   "<U006E><U0065>"
 END LC_MESSAGES
This page took 0.061219 seconds and 5 git commands to generate.