diff options
author | dtucker <dtucker> | 2003-06-04 23:52:42 +0000 |
---|---|---|
committer | dtucker <dtucker> | 2003-06-04 23:52:42 +0000 |
commit | 7065624456cc7cd7f133e34021517eef4bc851af (patch) | |
tree | 760593ecdcede57466b71f454b4364aab94b909f /canohost.c | |
parent | 672cecbdca9c4fe778800471f8e62b886f719303 (diff) | |
download | openssh-7065624456cc7cd7f133e34021517eef4bc851af.tar.gz |
Put AI_NUMERICHOST back where it belongs.
Diffstat (limited to 'canohost.c')
-rw-r--r-- | canohost.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |