Репозитории ALT

S: | 9.1.0.8.e08752-alt1 |
5.1: | 7.6-alt1 |
4.1: | 6.11-alt1 |
4.0: | 5.97-alt6 |
3.0: | 5.3.1-alt0.4 |
Другие репозитории

Upstream: | 8.1pl3 |
Группа :: Система/Основа
Пакет: coreutils
Главная Изменения Спек Патчи Sources Загрузить Gear Bugs and FR Repocop
Патч: gnulib-6.11-alt1.patch
Скачать
Скачать
tests/test-getaddrinfo.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/tests/test-getaddrinfo.c b/tests/test-getaddrinfo.c
index ca7c62c..e851d0b 100644
--- a/tests/test-getaddrinfo.c
+++ b/tests/test-getaddrinfo.c
@@ -54,6 +54,9 @@ int simple (char *host, char *service)
if (res != 0)
{
+ /* Do not fail due to temporary name resolution error. */
+ if (res == EAI_AGAIN)
+ return 0;
/* IRIX reports EAI_NONAME for "https". Don't fail the test
merely because of this. */
if (res == EAI_NONAME)