diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-05-23 23:56:31 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-05-23 23:56:31 +0000 |
commit | 64b7897d6d453e67afe3f9d81c8fc37c26f8d483 (patch) | |
tree | 8ba245ec72d14cb2dd1ca5adcd89d4f0589f2c78 /posix | |
parent | 2210704803b8ed0181109021488119f76b9868a1 (diff) | |
download | glibc-64b7897d6d453e67afe3f9d81c8fc37c26f8d483.tar.gz glibc-64b7897d6d453e67afe3f9d81c8fc37c26f8d483.tar.xz glibc-64b7897d6d453e67afe3f9d81c8fc37c26f8d483.zip |
Update.
2001-05-23 kaz Kojima <kkojima@rr.iij4u.or.jp> * sysdeps/sh/dl-machine.h (_dl_runtime_resolve): Handle newer PLT. (_dl_runtime_profile): Likewise.. 2001-05-23 Thorsten Kukuk <kukuk@suse.de> * sysdeps/posix/getaddrinfo.c: Support for AF_UNIX commented out. * posix/tst-getaddrinfo.c: Remove AF_UNIX test. 2001-05-19 H.J. Lu <hjl@gnu.org> * elf/dl-deps.c (_dl_map_object_deps): Pass objname and errstring of the failed DSO to _dl_signal_error ().
Diffstat (limited to 'posix')
-rw-r--r-- | posix/tst-getaddrinfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/tst-getaddrinfo.c b/posix/tst-getaddrinfo.c index 84929f57e4..a6197f2674 100644 --- a/posix/tst-getaddrinfo.c +++ b/posix/tst-getaddrinfo.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -26,7 +26,7 @@ static int do_test (void) { - const int family[3] = { AF_INET, AF_INET6, AF_UNIX }; + const int family[2] = { AF_INET, AF_INET6 }; int result = 0; int gaierr, index; struct addrinfo hints, *ai, *aitop; |