This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch release/2.23/master updated. glibc-2.23-92-ge9d53ff


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, release/2.23/master has been updated
       via  e9d53ff4d46e27d321161a2fb8f16820ea2cb68e (commit)
      from  3a5aa2ee4ffc515c8e7e615ea38d6b3b20ed0a30 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=e9d53ff4d46e27d321161a2fb8f16820ea2cb68e

commit e9d53ff4d46e27d321161a2fb8f16820ea2cb68e
Author: Mike Frysinger <vapier@gentoo.org>
Date:   Thu Dec 15 18:34:05 2016 -0500

    localedata: bs_BA: fix yesexpr/noexpr [BZ #20974]
    
    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).
    
    (cherry picked from commit a035eb6928bc63fb798dcc1421529f933122d74f)

diff --git a/localedata/ChangeLog b/localedata/ChangeLog
index dd1c2b1..02c0219 100644
--- a/localedata/ChangeLog
+++ b/localedata/ChangeLog
@@ -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-02-19  Florian Weimer  <fweimer@redhat.com>
 
 	[BZ #19581]
diff --git a/localedata/locales/bs_BA b/localedata/locales/bs_BA
index fa574a1..9201862 100644
--- a/localedata/locales/bs_BA
+++ b/localedata/locales/bs_BA
@@ -144,8 +144,8 @@ copy "en_DK"
 END LC_CTYPE
 
 LC_MESSAGES
-yesexpr "<U005E><U005B><U0064><U0044><U0079><U0059><U005D><U002A><U002E>"
-noexpr  "<U005E><U005B><U006E><U004E><U005D><U002A><U002E>"
+yesexpr "<U005E><U005B><U0064><U0044><U0079><U0059><U005D>"
+noexpr  "<U005E><U005B><U006E><U004E><U005D>"
 END LC_MESSAGES
 
 LC_MONETARY

-----------------------------------------------------------------------

Summary of changes:
 localedata/ChangeLog     |    6 ++++++
 localedata/locales/bs_BA |    4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]