diff options
author | dequis <dx@dxzone.com.ar> | 2014-07-24 00:51:07 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2014-07-24 00:51:07 -0300 |
commit | 269580c6302a677e07176494bd314c7e2a8f488f (patch) | |
tree | 393145104686ce5468d558c29a451a19677bf91d /root_commands.c | |
parent | 1783ab6964c9a8ffc3488bb5243f0b15858f4e74 (diff) |
Add limit param to split_command_parts(), fix twitter quotes bug
Only took me a few months to write. I even added a test case.
Diffstat (limited to 'root_commands.c')
-rw-r--r-- | root_commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/root_commands.c b/root_commands.c index 2c153f0e..ca40323f 100644 --- a/root_commands.c +++ b/root_commands.c @@ -31,7 +31,7 @@ void root_command_string( irc_t *irc, char *command ) { - root_command( irc, split_command_parts( command ) ); + root_command( irc, split_command_parts( command, 0 ) ); } #define MIN_ARGS( x, y... ) \ |