dftest: Don't use quotes to output filter

Using quotes is confusing because they are difficult to distinguish
from the actual filter expression itself. Quotes are unnecessary
anyway because whitespace is not significant (except inside brackets).
This commit is contained in:
João Valverde 2021-09-29 12:29:11 +01:00 committed by Wireshark GitLab Utility
parent 93d49562c5
commit 42906f1246
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ main(int argc, char **argv)
/* Get filter text */
text = get_args_as_string(argc, argv, 1);
printf("Filter: \"%s\"\n", text);
printf("Filter: %s\n", text);
/* Compile it */
if (!dfilter_compile(text, &df, &err_msg)) {