X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=httpinput.cpp;h=19167f0b6b7404df6592dc9e9e2805bd9424325d;hp=301aa3f9f81ebfe5c6b5d2f519841e19ceb1bf50;hb=46115862ece2cbd590bc4ae6fe06767869fa7668;hpb=861b758382bd863743232da244bc66533658440f diff --git a/httpinput.cpp b/httpinput.cpp index 301aa3f..19167f0 100644 --- a/httpinput.cpp +++ b/httpinput.cpp @@ -86,7 +86,7 @@ int HTTPInput::lookup_and_connect(const string &host, const string &port) { addrinfo *ai; int err = getaddrinfo(host.c_str(), port.c_str(), NULL, &ai); - if (err == -1) { + if (err != 0) { log(WARNING, "[%s] Lookup of '%s' failed (%s).", url.c_str(), host.c_str(), gai_strerror(err)); return -1;