aboutsummaryrefslogtreecommitdiffstats
path: root/irc_commands.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-08-07 17:33:02 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2010-08-07 17:33:02 +0100
commitdaae10fbfe16bac26f74af91faf253d377f1b166 (patch)
treee7870e81be568ab10abcc1bf8639a9191dbbb9c1 /irc_commands.c
parent289bd2d47ff58f42879ad50ebbc1b193831e4a78 (diff)
OpenSolaris (non-gcc) fixes, patches from Dagobert Michelsen <dam@opencsw.org>
with some changes.
Diffstat (limited to 'irc_commands.c')
-rw-r--r--irc_commands.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/irc_commands.c b/irc_commands.c
index 1d64fc0d..4b1bc741 100644
--- a/irc_commands.c
+++ b/irc_commands.c
@@ -37,7 +37,8 @@ static void irc_cmd_pass( irc_t *irc, char **cmd )
command last. (Possibly it won't send it at all if it turns
out we don't require it, which will break this feature.)
Try to identify using the given password. */
- return root_command( irc, send_cmd );
+ root_command( irc, send_cmd );
+ return;
}
/* Handling in pre-logged-in state, first see if this server is
password-protected: */