This is the mail archive of the
glibc-cvs@sourceware.org
mailing list for the glibc project.
GNU C Library master sources branch, master, updated. glibc-2.14-2-g8c29731
- From: drepper at sourceware dot org
- To: glibc-cvs at sourceware dot org
- Date: 31 May 2011 18:23:32 -0000
- Subject: GNU C Library master sources branch, master, updated. glibc-2.14-2-g8c29731
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, master has been updated
via 8c29731192565b9c917d6b97db78dcd302283df8 (commit)
from c8fc0c91695b1c7003c7170861274161f9224817 (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=8c29731192565b9c917d6b97db78dcd302283df8
commit 8c29731192565b9c917d6b97db78dcd302283df8
Author: Ulrich Drepper <drepper@gmail.com>
Date: Tue May 31 14:23:01 2011 -0400
Fix typo in stack guard setup code for old kernels
diff --git a/ChangeLog b/ChangeLog
index eee3d1b..2aca74a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-05-31 Ulrich Drepper <drepper@gmail.com>
+
+ * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
+ typo.
+
2011-05-31 Andreas Schwab <schwab@redhat.com>
* nscd/nscd_getserv_r.c (nscd_getserv_r): Don't free non-malloced
diff --git a/sysdeps/unix/sysv/linux/dl-osinfo.h b/sysdeps/unix/sysv/linux/dl-osinfo.h
index eb7fedc..28fce4f 100644
--- a/sysdeps/unix/sysv/linux/dl-osinfo.h
+++ b/sysdeps/unix/sysv/linux/dl-osinfo.h
@@ -81,7 +81,7 @@ _dl_setup_stack_chk_guard (void *dl_random)
{
ssize_t reslen = read_not_cancel (fd, ret.bytes + 1, filllen);
close_not_cancel_no_status (fd);
- if (reslen == (ssize_) filllen)
+ if (reslen == (ssize_t) filllen)
return ret.num;
}
# endif
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 +++++
sysdeps/unix/sysv/linux/dl-osinfo.h | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
hooks/post-receive
--
GNU C Library master sources