summaryrefslogtreecommitdiff
path: root/core/network.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/network.c')
-rw-r--r--core/network.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/network.c b/core/network.c
index ced08207..a7a4efcd 100644
--- a/core/network.c
+++ b/core/network.c
@@ -178,7 +178,7 @@ int resolve_addr(const char *address)
178 178
179 struct addrinfo *server = NULL; 179 struct addrinfo *server = NULL;
180 180
181 int success = getaddrinfo(address, "7", &hints, &server); 181 int success = getaddrinfo(address, "echo", &hints, &server);
182 if(success != 0) 182 if(success != 0)
183 return -1; 183 return -1;
184 184