diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-01-23 08:54:19 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-01-23 08:54:19 +0000 |
commit | 4974d2b285421f27972879d4edd37582f464c809 (patch) | |
tree | ce7a39e1bf6ed75ef41250dc8f6a92f151e74678 /inet/rexec.c | |
parent | bd32e4a68782e7e6fe5a4f18f2d52ca347591c07 (diff) | |
download | glibc-4974d2b285421f27972879d4edd37582f464c809.tar glibc-4974d2b285421f27972879d4edd37582f464c809.tar.gz glibc-4974d2b285421f27972879d4edd37582f464c809.tar.bz2 glibc-4974d2b285421f27972879d4edd37582f464c809.zip |
Update.
2000-01-23 Mark Kettenis <kettenis@gnu.org>
* inet/rexec.c (rexec_af): Use SA_LEN instead of __libc_sa_len.
2000-01-22 Thorsten Kukuk <kukuk@suse.de>
* sunrpc/xdr_rec.c: Don't set frag_sent if no more data,
fixes part 2 of bug 1549.
* sunrpc/rpc_des.h: Remove unused defines.
2000-01-22 Mark Kettenis <kettenis@gnu.org>
* intl/Makefile ($(objpfx)msgs.h): Do $(make-target-directory) first.
2000-01-22 Thorsten Kukuk <kukuk@suse.de>
* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Remove sys/io.h.
* sysdeps/unix/sysv/linux/alpha/Makefile: Add sys/io.h.
* sysdeps/unix/sysv/linux/arm/Makefile: Likewise.
* sysdeps/unix/sysv/linux/i386/Makefile: Likewise.
* sysdeps/unix/sysv/linux/sys/io.h: Move from here ...
* sysdeps/unix/sysv/linux/i386/sys/io.h: ... to here, add inb, outb
and other inline functions for port access.
* sysdeps/unix/sysv/linux/alpha/sys/io.h: Add prototypes for port
access functions.
2000-01-23 Ulrich Drepper <drepper@cygnus.com>
* iconv/gconv_simple.c: Fix two problems in UTF-8 decoder.
Patch by Bruno Haibe <haible@ilog.fr>.
Diffstat (limited to 'inet/rexec.c')
-rw-r--r-- | inet/rexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inet/rexec.c b/inet/rexec.c index 5cab324591..8a977c6ab9 100644 --- a/inet/rexec.c +++ b/inet/rexec.c @@ -117,7 +117,7 @@ retry: listen(s2, 1); sa2len = sizeof (sa2); if (getsockname(s2, (struct sockaddr *)&sa2, &sa2len) < 0 || - sa2len != __libc_sa_len(sa2.__ss_family)) { + sa2len != SA_LEN((struct sockaddr *)&sa2)) { perror("getsockname"); (void) __close(s2); goto bad; |