mirror of git://sourceware.org/git/glibc.git
Update.
* hesiod/hesiod.c (hesiod_resolve): Also search HS records is errno is ECONNREFUSED. * posix/Makefile: Define MBS_SUPPORT for regex.c.
This commit is contained in:
parent
e4c785c8d7
commit
0c7dfa144b
|
@ -1,5 +1,9 @@
|
||||||
2001-02-02 Ulrich Drepper <drepper@redhat.com>
|
2001-02-02 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* hesiod/hesiod.c (hesiod_resolve): Also search HS records is
|
||||||
|
errno is ECONNREFUSED.
|
||||||
|
|
||||||
|
* posix/Makefile: Define MBS_SUPPORT for regex.c.
|
||||||
* posix/regex.c: Implement multibyte character handling.
|
* posix/regex.c: Implement multibyte character handling.
|
||||||
Patch by Isamu Hasegawa <isamu@yamato.ibm.co.jp>.
|
Patch by Isamu Hasegawa <isamu@yamato.ibm.co.jp>.
|
||||||
|
|
||||||
|
|
|
@ -249,7 +249,7 @@ hesiod_resolve(void *context, const char *name, const char *type) {
|
||||||
return (retvec);
|
return (retvec);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (errno != ENOENT)
|
if (errno != ENOENT && errno != ECONNREFUSED)
|
||||||
return (NULL);
|
return (NULL);
|
||||||
|
|
||||||
retvec = get_txt_records(ctx, C_HS, bindname);
|
retvec = get_txt_records(ctx, C_HS, bindname);
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (C) 1991-1999, 2000 Free Software Foundation, Inc.
|
# Copyright (C) 1991-1999, 2000, 2001 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
|
||||||
|
@ -107,7 +107,7 @@ $(objpfx)wordexp-tst.out: wordexp-tst.sh $(objpfx)wordexp-test
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CFLAGS-regex.c = -Wno-strict-prototypes
|
CFLAGS-regex.c = -Wno-strict-prototypes -DMBS_SUPPORT
|
||||||
CFLAGS-getaddrinfo.c = -DRESOLVER
|
CFLAGS-getaddrinfo.c = -DRESOLVER
|
||||||
tstgetopt-ARGS = -a -b -cfoobar --required foobar --optional=bazbug \
|
tstgetopt-ARGS = -a -b -cfoobar --required foobar --optional=bazbug \
|
||||||
--none random --col --color --colour
|
--none random --col --color --colour
|
||||||
|
|
Loading…
Reference in New Issue