aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Stapelberg2009-08-23 20:20:52 +0200
committerMichael Stapelberg2009-09-26 13:24:36 +0200
commit89ad3dbaa258f3c15957d5f69558d070e3c5d9bc (patch)
tree7f94e31aa668fdbd235b42d3d48b964623f6594f /src
parentSmall improvement regarding readability if one hasn't an IPv6 address. (diff)
Don’t display an error message if getaddrinfo() fails for getting the IPv6 addr (Thanks Atsutane)
Diffstat (limited to 'src')
-rw-r--r--src/get_ipv6_addr.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/get_ipv6_addr.c b/src/get_ipv6_addr.c
index 0f22e29..341b5ba 100644
--- a/src/get_ipv6_addr.c
+++ b/src/get_ipv6_addr.c
@@ -25,7 +25,9 @@ const char *get_ipv6_addr() {
* replace this with any other host which has an AAAA record, but the
* K root server is a pretty safe bet. */
if (getaddrinfo("k.root-servers.net", "domain", &hints, &result) != 0) {
- perror("getaddrinfo()");
+ /* We don’t display the error here because most
+ * likely, there just is no connectivity.
+ * Thus, don’t spam the user’s console. */
return "no IPv6";
}