diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-02-08 04:54:16 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-02-08 04:54:16 +0000 |
commit | e8cbda7ac443aa327b5a5528752317120a821881 (patch) | |
tree | 883bd01d97b9894a13b8dfeca9543c3869efa531 /usr.sbin | |
parent | 1cf3ad03967ca9340b046a51b92c03a882c64891 (diff) |
Add a comment that ntpd MUST NOT use AI_ADDRCONFIG in host_dns()
OK henning@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ntpd/config.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ntpd/config.c b/usr.sbin/ntpd/config.c index b3e9d46da70..e2443e65445 100644 --- a/usr.sbin/ntpd/config.c +++ b/usr.sbin/ntpd/config.c @@ -1,4 +1,4 @@ -/* $OpenBSD: config.c,v 1.24 2015/01/19 11:44:08 bcook Exp $ */ +/* $OpenBSD: config.c,v 1.25 2015/02/08 04:54:15 reyk Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -130,6 +130,7 @@ host_dns(const char *s, struct ntp_addr **hn) bzero(&hints, sizeof(hints)); hints.ai_family = PF_UNSPEC; hints.ai_socktype = SOCK_DGRAM; /* DUMMY */ + /* ntpd MUST NOT use AI_ADDRCONFIG here */ error = getaddrinfo(s, NULL, &hints, &res0); if (error == EAI_AGAIN || error == EAI_NODATA || error == EAI_NONAME) return (0); |