diff options
author | 2007-07-15 19:44:02 +0000 | |
---|---|---|
committer | 2007-07-15 19:44:02 +0000 | |
commit | 20cb470b55527d25d51c276a2a5f66cad5bcda6c (patch) | |
tree | 2e6053a4f188e30f169866653f2b2ae3a26757c8 /sys-libs/glibc/files/2.6 | |
parent | Changed maintainer to hawking (diff) | |
download | gentoo-2-20cb470b55527d25d51c276a2a5f66cad5bcda6c.tar.gz gentoo-2-20cb470b55527d25d51c276a2a5f66cad5bcda6c.tar.bz2 gentoo-2-20cb470b55527d25d51c276a2a5f66cad5bcda6c.zip |
also stub out _SSP_NSIG and fix typo in DO_CONNECT
(Portage version: 2.1.3_rc8)
Diffstat (limited to 'sys-libs/glibc/files/2.6')
-rw-r--r-- | sys-libs/glibc/files/2.6/glibc-2.6-gentoo-stack_chk_fail.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys-libs/glibc/files/2.6/glibc-2.6-gentoo-stack_chk_fail.c b/sys-libs/glibc/files/2.6/glibc-2.6-gentoo-stack_chk_fail.c index c696993477c2..217bf1a90790 100644 --- a/sys-libs/glibc/files/2.6/glibc-2.6-gentoo-stack_chk_fail.c +++ b/sys-libs/glibc/files/2.6/glibc-2.6-gentoo-stack_chk_fail.c @@ -107,6 +107,7 @@ # define _SSP_NSIG _NSIG # endif #else +# define _SSP_NSIG 0 # define ENABLE_SSP_SMASH_DUMPS_CORE 0 #endif @@ -157,7 +158,7 @@ socketargs[3] = 0; \ result = INLINE_SYSCALL(socketcall, 2, SOCKOP_connect, socketargs); \ } else \ - result = INLINE_SYSCALL(socket, 3, domain, type, protocol); \ + result = INLINE_SYSCALL(connect, 3, sockfd, serv_addr, addrlen); \ } while (0) #ifndef _PATH_LOG |