diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-04-01 22:29:45 -0400 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-04-01 22:29:45 -0400 |
commit | fb117aee274bccfb6528288599ef81fe72191e12 (patch) | |
tree | 5f31493f33c12528dce1424057c94bba64633dbc /irc_commands.c | |
parent | e63507a356ac94085bcd00048b81d3ce2f27f287 (diff) |
Cleaned lots of compiler warnings so I can get some signal again.
Diffstat (limited to 'irc_commands.c')
-rw-r--r-- | irc_commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/irc_commands.c b/irc_commands.c index 03d05417..57268d07 100644 --- a/irc_commands.c +++ b/irc_commands.c @@ -38,7 +38,7 @@ 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 );*/ + return root_command( irc, send_cmd ); } /* Handling in pre-logged-in state, first see if this server is password-protected: */ |