mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
Update.
* nss/bug-erange.c (main): Don't fail if /etc/resolv.conf doesn't exist. 2002-09-29 Ulrich Drepper <drepper@redhat.com> * nss/Makefile: Move bug-erage from tests to xtests. 2002-09-29 Jakub Jelinek <jakub@redhat.com>
This commit is contained in:
parent
3ae5121b7f
commit
9a1c21c453
@ -1,3 +1,12 @@
|
|||||||
|
2002-09-29 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* nss/bug-erange.c (main): Don't fail if /etc/resolv.conf doesn't
|
||||||
|
exist.
|
||||||
|
|
||||||
|
2002-09-29 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* nss/Makefile: Move bug-erage from tests to xtests.
|
||||||
|
|
||||||
2002-09-29 Jakub Jelinek <jakub@redhat.com>
|
2002-09-29 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* stdlib/longlong.h (__udiv_qrnnd): Remove PARAMS from prototype.
|
* stdlib/longlong.h (__udiv_qrnnd): Remove PARAMS from prototype.
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-09-29 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/i386/useldt.h (DO_SET_THREAD_AREA): Don't use
|
||||||
|
INLINE_SYSCALL for set_thread_area syscall.
|
||||||
|
|
||||||
2002-09-28 Roland McGrath <roland@redhat.com>
|
2002-09-28 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
* pthread.c (__pthread_reset_main_thread) [FLOATING_STACKS]:
|
* pthread.c (__pthread_reset_main_thread) [FLOATING_STACKS]:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright (C) 1996, 1997, 1998, 2000, 2001 Free Software Foundation, Inc.
|
# Copyright (C) 1996,1997,1998,2000,2001,2002 Free Software Foundation, Inc.
|
||||||
# This file is part of the GNU C Library.
|
# This file is part of the GNU C Library.
|
||||||
|
|
||||||
# The GNU C Library is free software; you can redistribute it and/or
|
# The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -39,7 +39,8 @@ databases = proto service hosts network grp pwd rpc ethers \
|
|||||||
others := getent
|
others := getent
|
||||||
install-bin := getent
|
install-bin := getent
|
||||||
|
|
||||||
tests = test-netdb bug-erange
|
tests = test-netdb
|
||||||
|
xtests = bug-erange
|
||||||
|
|
||||||
include ../Makeconfig
|
include ../Makeconfig
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
int
|
int
|
||||||
main (void)
|
main (void)
|
||||||
@ -35,6 +36,13 @@ main (void)
|
|||||||
if (res != 0 || hp == NULL)
|
if (res != 0 || hp == NULL)
|
||||||
{
|
{
|
||||||
printf ("gethostbyname_r failed: %s (errno: %m)\n", strerror (res));
|
printf ("gethostbyname_r failed: %s (errno: %m)\n", strerror (res));
|
||||||
|
|
||||||
|
if (access ("/etc/resolv.conf", R_OK))
|
||||||
|
{
|
||||||
|
puts ("DNS probably not set up");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user