From 42906f1246c00b9e167960bb8722339743a28484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= Date: Wed, 29 Sep 2021 12:29:11 +0100 Subject: 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). --- dftest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dftest.c') diff --git a/dftest.c b/dftest.c index 1c0a4db6b0..1c7ba933b5 100644 --- a/dftest.c +++ b/dftest.c @@ -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)) { -- cgit v1.2.3