diff options
author | Timo Sirainen <cras@irssi.org> | 2001-03-15 20:48:57 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-03-15 20:48:57 +0000 |
commit | 6fda90e72b3d7681071b00d50b7e429251e1899b (patch) | |
tree | b18f49ab5b39a4f9423bf8fd7077a1dd322599c3 /src/core/servers.c | |
parent | cd9c127aab246c011a19975dc6384459863b4d4c (diff) | |
download | irssi-6fda90e72b3d7681071b00d50b7e429251e1899b.zip |
server_connect_own_ip_save(): fixed some nasty typos that could have
crashed irssi when using vhosts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1395 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/servers.c')
-rw-r--r-- | src/core/servers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/servers.c b/src/core/servers.c index cc9d0890..b78b9161 100644 --- a/src/core/servers.c +++ b/src/core/servers.c @@ -446,14 +446,14 @@ void server_connect_own_ip_save(SERVER_CONNECT_REC *conn, if (ip4 != NULL && ip4->family != 0) { /* IPv4 address was found */ - if (conn->own_ip4 != NULL) + if (conn->own_ip4 == NULL) conn->own_ip4 = g_new0(IPADDR, 1); memcpy(conn->own_ip4, ip4, sizeof(IPADDR)); } if (ip6 != NULL && ip6->family != 0) { /* IPv6 address was found */ - if (conn->own_ip6 != NULL) + if (conn->own_ip6 == NULL) conn->own_ip6 = g_new0(IPADDR, 1); memcpy(conn->own_ip6, ip6, sizeof(IPADDR)); } |