diff options
author | Timo Sirainen <cras@irssi.org> | 2004-01-22 14:06:35 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2004-01-22 14:06:35 +0000 |
commit | 2f819f285ea0980a8033ffeba070c0b13ff6b90f (patch) | |
tree | 34c63d3b759fd4846b3fb5c736d334f9a53ca4f6 | |
parent | a4828654467b8efb579654fedea8159ba9384184 (diff) | |
download | irssi-2f819f285ea0980a8033ffeba070c0b13ff6b90f.zip |
fix
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3214 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/irc/core/irc-session.c | 2 |
1 files changed, 1 insertions, 1 deletions
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]; } |