From 2f819f285ea0980a8033ffeba070c0b13ff6b90f Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 22 Jan 2004 14:06:35 +0000 Subject: [PATCH] fix git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3214 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/irc/core/irc-session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/irc/core/irc-session.c b/src/irc/core/irc-session.c index fda9f9c3..cf6a5098 100644 --- a/src/irc/core/irc-session.c +++ b/src/irc/core/irc-session.c @@ -128,7 +128,7 @@ static void sig_session_restore_nick(IRC_CHANNEL_REC *channel, voice = config_node_get_bool(node, "voice", FALSE); halfop = config_node_get_bool(node, "halfop", FALSE); nickrec = irc_nicklist_insert(channel, nick, op, halfop, voice, FALSE); - other = config_node_get_str(node, "other", FALSE); + other = config_node_get_str(node, "other", NULL); nickrec->other = other == NULL ? '\0' : other[0]; }