Skip to content
Snippets Groups Projects
Commit b601d0be authored by Alexander Turenko's avatar Alexander Turenko Committed by Vladimir Davydov
Browse files

Remove deprecated getaddrinfo() flags

AI_IDN_ALLOW_UNASSIGNED and AI_IDN_USE_STD3_ASCII_RULES flags are
deprecated by glibc-2.28 and the deprecation warnings did cause fail of
Debug build, because of -Werror.

Fixes #3766.
parent 1730b39a
No related branches found
No related tags found
No related merge requests found
......@@ -391,12 +391,6 @@ static const struct { char name[32]; int value; } ai_flags[] = {
#ifdef AI_CANONIDN
{"AI_CANONIDN", AI_CANONIDN },
#endif
#ifdef AI_IDN_ALLOW_UNASSIGNED
{"AI_IDN_ALLOW_UNASSIGNED", AI_IDN_ALLOW_UNASSIGNED },
#endif
#ifdef AI_IDN_USE_STD3_ASCII_RULES
{"AI_IDN_USE_STD3_ASCII_RULES", AI_IDN_USE_STD3_ASCII_RULES },
#endif
#ifdef AI_NUMERICSERV
{"AI_NUMERICSERV", AI_NUMERICSERV },
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment