* Put the commas back in when parsing the filter args, so the log contains the actual args sent by the client, instead of just the first one.

This commit is contained in:
Justin Maggard 2009-05-03 18:31:53 +00:00
parent f7f67359ed
commit 7c64eb10ac

View File

@ -332,6 +332,8 @@ set_filter_flags(char * filter)
flags |= FILTER_RES; flags |= FILTER_RES;
flags |= FILTER_RES_SIZE; flags |= FILTER_RES_SIZE;
} }
if( *saveptr )
*(saveptr-1) = ',';
item = strtok_r(NULL, ",", &saveptr); item = strtok_r(NULL, ",", &saveptr);
} }