Revert recently introduced typo: AI_NUMERICHOST -> NI_NUMERICHOST
This commit is contained in:
parent
0cbb9dea05
commit
66c884070e
|
@ -93,7 +93,7 @@ get_remote_hostname(int socket, int use_dns)
|
||||||
*/
|
*/
|
||||||
memset(&hints, 0, sizeof(hints));
|
memset(&hints, 0, sizeof(hints));
|
||||||
hints.ai_socktype = SOCK_DGRAM; /*dummy*/
|
hints.ai_socktype = SOCK_DGRAM; /*dummy*/
|
||||||
hints.ai_flags = AI_NUMERICHOST;
|
hints.ai_flags = NI_NUMERICHOST;
|
||||||
if (getaddrinfo(name, "0", &hints, &ai) == 0) {
|
if (getaddrinfo(name, "0", &hints, &ai) == 0) {
|
||||||
logit("Nasty PTR record \"%s\" is set up for %s, ignoring",
|
logit("Nasty PTR record \"%s\" is set up for %s, ignoring",
|
||||||
name, ntop);
|
name, ntop);
|
||||||
|
|
Loading…
Reference in New Issue