summaryrefslogtreecommitdiff
path: root/src/core/chat-commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/chat-commands.c')
-rw-r--r--src/core/chat-commands.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/chat-commands.c b/src/core/chat-commands.c
index 8e881679..9c28a1fc 100644
--- a/src/core/chat-commands.c
+++ b/src/core/chat-commands.c
@@ -128,10 +128,10 @@ static SERVER_CONNECT_REC *get_server_connect(const char *data, int *plus_addr,
host = g_hash_table_lookup(optlist, "host");
if (host != NULL && *host != '\0') {
- IPADDR ip4, ip6;
+ IPADDR ip;
- if (net_gethostbyname(host, &ip4, &ip6) == 0)
- server_connect_own_ip_save(conn, &ip4, &ip6);
+ if (net_gethostbyname(host, &ip) == 0)
+ server_connect_own_ip_save(conn, &ip);
}
cmd_params_free(free_arg);