]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 11 Nov 2003 07:22:02 +0000 (07:22 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 11 Nov 2003 07:22:02 +0000 (07:22 +0000)
2003-11-10  Carlos O'Donell  <carlos@baldric.uwo.ca>

* io/ftwtest-sh: Fix nested sed commands.

2003-11-10  Jakub Jelinek  <jakub@redhat.com>

* posix/regex_internal.h (re_string_char_size_at): Don't look beyond
valid_len wide chars.

ChangeLog
io/ftwtest-sh

index 9880e547b09bfd3523ab5816c88f8706fadf1fe4..220de4279c3a581a07b5ae18358dbd4cf9ceefc4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2003-11-10  Carlos O'Donell  <carlos@baldric.uwo.ca>
+
+       * io/ftwtest-sh: Fix nested sed commands.
+
+2003-11-10  Jakub Jelinek  <jakub@redhat.com>
+
+       * posix/regex_internal.h (re_string_char_size_at): Don't look beyond
+       valid_len wide chars.
+
 2003-11-09  Roland McGrath  <roland@redhat.com>
 
        * manual/examples/dir2.c (one): Add const to argument type.
index 2fed2edcfa1ba4e57b4a5b93632d756349a8aa13..dc495d5dba825a7ecfae03d3bd42477d8b6e4195 100644 (file)
@@ -231,7 +231,7 @@ LD_LIBRARY_PATH=$objpfx $ldso $testprogram --skip-siblings=lvl1 $tmpdir |
 # If lvl1b comes after lvl1, it shouldn't be printed, while if it
 # comes before, it should.
 catcmd=cat
-[ -n "`ls -U $tmpdir/foo/ | sed -n '/lvl1$/,${/lvl1b$/p}'`" ] \
+[ -n "`ls -U $tmpdir/foo/ | sed -n '/lvl1$/,${/lvl1b$/p;}'`" ] \
   && catcmd="grep -v lvl1b"
 
 $catcmd <<EOF | diff -u $testout - || exit 1
@@ -255,7 +255,7 @@ LD_LIBRARY_PATH=$objpfx $ldso $testprogram --skip-siblings=file@1b $tmpdir |
 # If file[23]@1b come after file@1b, it shouldn't be printed, while if they
 # come before, they should.
 regexp=`echo $(ls -U /tmp/ftwtest.d/foo/lvl1b \
-              | sed -n '/file@1b$/,${/file[23]@1b$/p}') | sed 's, ,|,'`
+              | sed -n '/file@1b$/,${/file[23]@1b$/p;}') | sed 's, ,|,'`
 catcmd=cat
 [ -n "$regexp" ] && catcmd="egrep -v $regexp"
 
This page took 0.05557 seconds and 5 git commands to generate.