summaryrefslogtreecommitdiff
path: root/drivers/unix/ip_unix.cpp
diff options
context:
space:
mode:
authorMax Hilbrunner <mhilbrunner@users.noreply.github.com>2018-04-20 12:04:44 +0200
committerGitHub <noreply@github.com>2018-04-20 12:04:44 +0200
commit7d6f210ccb5de9ef414f94ad42f9f3dea14c0493 (patch)
treec2ebcb35d39aca555a5e5dc91890f9f5ae153c5e /drivers/unix/ip_unix.cpp
parentdf79cc86a56c2d18b421ceacda3dee6669e6cbd9 (diff)
parentf05e24ed18575e2f48270025c4c2bb0705c667b5 (diff)
Merge pull request #18316 from Noshyaar/http
[DOCS] add HTTPRequest.request return values
Diffstat (limited to 'drivers/unix/ip_unix.cpp')
-rw-r--r--drivers/unix/ip_unix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/ip_unix.cpp b/drivers/unix/ip_unix.cpp
index 032d91f0dc..a7fb0c3887 100644
--- a/drivers/unix/ip_unix.cpp
+++ b/drivers/unix/ip_unix.cpp
@@ -105,7 +105,7 @@ IP_Address IP_Unix::_resolve_hostname(const String &p_hostname, Type p_type) {
int s = getaddrinfo(p_hostname.utf8().get_data(), NULL, &hints, &result);
if (s != 0) {
- ERR_PRINT("getaddrinfo failed!");
+ ERR_PRINT("getaddrinfo failed! Cannot resolve hostname.");
return IP_Address();
};