From: Ulrich Drepper Date: Tue, 24 Apr 2001 14:18:02 +0000 (+0000) Subject: Fix typos in last patch. X-Git-Tag: upstream/2.30~23151 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2ee403d414670c448cf281f3e142c11254b171bb;p=external%2Fglibc.git Fix typos in last patch. --- diff --git a/linuxthreads/wrapsyscall.c b/linuxthreads/wrapsyscall.c index 74923e1..5acc60b 100644 --- a/linuxthreads/wrapsyscall.c +++ b/linuxthreads/wrapsyscall.c @@ -208,7 +208,7 @@ CANCELABLE_SYSCALL (ssize_t, recvmsg, (int fd, struct msghdr *message, int flags (fd, message, flags)) /* send(2). */ -CANCELABLE_SYSCALL (ssize_t, send, (ssize_t fd, const __ptr_t buf, size_t n, +CANCELABLE_SYSCALL (ssize_t, send, (int fd, const __ptr_t buf, size_t n, int flags), (fd, buf, n, flags)) strong_alias (send, __send) @@ -219,7 +219,7 @@ CANCELABLE_SYSCALL (ssize_t, sendmsg, (int fd, const struct msghdr *message, (fd, message, flags)) /* sendto(2). */ -CANCELABLE_SYSCALL (ssize_t, sendto, (ssize_t fd, const __ptr_t buf, size_t n, +CANCELABLE_SYSCALL (ssize_t, sendto, (int fd, const __ptr_t buf, size_t n, int flags, __CONST_SOCKADDR_ARG addr, socklen_t addr_len), (fd, buf, n, flags, addr, addr_len))