diff options
-rw-r--r-- | core/network.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/network.c b/core/network.c index aa16bda9..3cd53ef7 100644 --- a/core/network.c +++ b/core/network.c | |||
@@ -178,7 +178,7 @@ int resolve_addr(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 | ||