Use the PARAM_FLAG_STRIP_TRAILING_WS flag wherever possible.

This commit is contained in:
LemonBoy 2015-11-09 23:02:41 +01:00
commit d4676c9855
11 changed files with 33 additions and 25 deletions

View file

@ -174,8 +174,8 @@ static void cmd_dcc_send(const char *data, IRC_SERVER_REC *server,
int queue, mode, passive;
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_OPTIONS |
PARAM_FLAG_GETREST, "dcc send",
&optlist, &nick, &fileargs))
PARAM_FLAG_GETREST | PARAM_FLAG_STRIP_TRAILING_WS,
"dcc send", &optlist, &nick, &fileargs))
return;
chat = item_get_dcc(item);

View file

@ -496,8 +496,8 @@ static void cmd_dcc_close(char *data, IRC_SERVER_REC *server)
g_return_if_fail(data != NULL);
if (!cmd_get_params(data, &free_arg, 3 | PARAM_FLAG_GETREST,
&typestr, &nick, &arg))
if (!cmd_get_params(data, &free_arg, 3 | PARAM_FLAG_GETREST |
PARAM_FLAG_STRIP_TRAILING_WS, &typestr, &nick, &arg))
return;
if (*nick == '\0') cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);