Put AI_NUMERICHOST back where it belongs.

This commit is contained in:
Darren Tucker 2003-06-05 09:52:42 +10:00
Родитель 10eac0cf8f
Коммит 0f68486a76
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -93,7 +93,7 @@ get_remote_hostname(int socket, int use_dns)
*/
memset(&hints, 0, sizeof(hints));
hints.ai_socktype = SOCK_DGRAM; /*dummy*/
hints.ai_flags = NI_NUMERICHOST;
hints.ai_flags = AI_NUMERICHOST;
if (getaddrinfo(name, "0", &hints, &ai) == 0) {
logit("Nasty PTR record \"%s\" is set up for %s, ignoring",
name, ntop);