1
0
mirror of https://github.com/irssi/irssi.git synced 2024-11-03 04:27:19 -05:00

small "fix"

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@801 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-11-02 16:29:05 +00:00 committed by cras
parent 5da6c63cdd
commit da4d8445f1

View File

@ -329,7 +329,7 @@ static SERVER_SETUP_REC *server_setup_read(CONFIG_NODE *node)
rec->password = g_strdup(config_node_get_str(node, "password", NULL));
rec->port = port;
rec->autoconnect = config_node_get_bool(node, "autoconnect", FALSE);
rec->own_host = g_strdup(config_node_get_str(node, "own_host", 0));
rec->own_host = g_strdup(config_node_get_str(node, "own_host", NULL));
setupservers = g_slist_append(setupservers, rec);
return rec;