Add an option to strip trailing whitespace when parsing commands

This commit is contained in:
LemonBoy 2015-11-09 17:32:51 +01:00
commit 1006fee802
2 changed files with 7 additions and 0 deletions

View file

@ -748,6 +748,11 @@ int cmd_get_params(const char *data, gpointer *free_me, int count, ...)
if (cnt == 0 && count & PARAM_FLAG_GETREST) {
/* get rest */
arg = datad;
/* strip the trailing whitespace */
if (count & PARAM_FLAG_STRIP_TRAILING_WS) {
arg = g_strchomp (arg);
}
} else {
arg = (count & PARAM_FLAG_NOQUOTES) ?
cmd_get_param(&datad) :