auto-import changelog data from coreutils-5.2.1-23.src.rpm

Fri Aug 20 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-23
- Fixed colorls.csh quoting (bug #102412).
- Fixed another join LSB test failure (bug #121153).
This commit is contained in:
cvsdist 2004-09-09 04:04:26 +00:00
parent 224ab6f415
commit 8592c20dd5
2 changed files with 7 additions and 3 deletions

View File

@ -3435,7 +3435,7 @@
+ char *ptr = line->buf.buffer; + char *ptr = line->buf.buffer;
+ char const *lim = ptr + line->buf.length - 1; + char const *lim = ptr + line->buf.length - 1;
+ wchar_t wc = 0; + wchar_t wc = 0;
+ size_t mblength; + size_t mblength = 1;
+ mbstate_t state, state_bak; + mbstate_t state, state_bak;
+ +
+ memset (&state, 0, sizeof (mbstate_t)); + memset (&state, 0, sizeof (mbstate_t));
@ -3447,7 +3447,7 @@
+ { + {
+ unsigned char t = tab[0]; + unsigned char t = tab[0];
+ char *sep = ptr; + char *sep = ptr;
+ for (; ptr < lim; ptr = sep + 1) + for (; ptr < lim; ptr = sep + mblength)
+ { + {
+ sep = ptr; + sep = ptr;
+ while (sep < lim) + while (sep < lim)

View File

@ -4,7 +4,7 @@
Summary: The GNU core utilities: a set of tools commonly used in shell scripts Summary: The GNU core utilities: a set of tools commonly used in shell scripts
Name: coreutils Name: coreutils
Version: 5.2.1 Version: 5.2.1
Release: 22 Release: 23
License: GPL License: GPL
Group: System Environment/Base Group: System Environment/Base
Url: ftp://alpha.gnu.org/gnu/coreutils/ Url: ftp://alpha.gnu.org/gnu/coreutils/
@ -244,6 +244,10 @@ fi
%_sbindir/chroot %_sbindir/chroot
%changelog %changelog
* Fri Aug 20 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-23
- Fixed colorls.csh quoting (bug #102412).
- Fixed another join LSB test failure (bug #121153).
* Mon Aug 16 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-22 * Mon Aug 16 2004 Tim Waugh <twaugh@redhat.com> 5.2.1-22
- Fixed sort -t LSB test failure (bug #121154). - Fixed sort -t LSB test failure (bug #121154).
- Fixed join LSB test failure (bug #121153). - Fixed join LSB test failure (bug #121153).