about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-07-20 11:53:52 +0000
committerRoland McGrath <roland@gnu.org>1996-07-20 11:53:52 +0000
commit73f7f68ba36f904d85f56c0c3e602b707f132069 (patch)
tree1199d4a31d32bb30910738c8fe9f287675919120
parent22f87e0fa87762b244202e32500bda7085f5d287 (diff)
downloadglibc-73f7f68ba36f904d85f56c0c3e602b707f132069.tar.gz
glibc-73f7f68ba36f904d85f56c0c3e602b707f132069.tar.xz
glibc-73f7f68ba36f904d85f56c0c3e602b707f132069.zip
Fri Jul 19 15:45:20 1996 Ulrich Drepper <drepper@cygnus.com>
	* locale/C-messages.c (_nl_C_LC_MESSAGES): Add missing Kleene
	operator to yesexpr and noexpr string.
-rw-r--r--ChangeLog5
-rw-r--r--db.h1
-rw-r--r--dlfcn.h1
-rw-r--r--locale/C-messages.c4
4 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6d97ab7b59..2324aeb5be 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,11 @@ Sat Jul 20 07:15:33 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
 	($(libdir)/libc.so): Remove dep on libcrypt.so$(libcrypt.so-version).
 	* Makefile (subdirs): Remove crypt.
 
+Fri Jul 19 15:45:20 1996  Ulrich Drepper  <drepper@cygnus.com>
+
+	* locale/C-messages.c (_nl_C_LC_MESSAGES): Add missing Kleene
+	operator to yesexpr and noexpr string.
+
 Fri Jul 19 15:10:37 1996  David Mosberger-Tang  <davidm@azstarnet.com>
 
 	* sunrpc/xdr_mem.c (xdrmem_putlong): Don't cast LP to int32 (the
diff --git a/db.h b/db.h
new file mode 100644
index 0000000000..a04f7746ef
--- /dev/null
+++ b/db.h
@@ -0,0 +1 @@
+#include <db/db.h>
diff --git a/dlfcn.h b/dlfcn.h
new file mode 100644
index 0000000000..92804a1c1c
--- /dev/null
+++ b/dlfcn.h
@@ -0,0 +1 @@
+#include <elf/dlfcn.h>
diff --git a/locale/C-messages.c b/locale/C-messages.c
index c6ce5b758d..b5fcd199ca 100644
--- a/locale/C-messages.c
+++ b/locale/C-messages.c
@@ -25,8 +25,8 @@ const struct locale_data _nl_C_LC_MESSAGES =
   NULL, 0, /* no file mapped */
   4,
   {
-    { string: "[yY][[:alpha:]]" },
-    { string: "[nN][[:alpha:]]" },
+    { string: "[yY][[:alpha:]]*" },
+    { string: "[nN][[:alpha:]]*" },
     { string: "" },
     { string: "" }
   }