From 6796698c9945d87236ffcc939137d0919ef04931 Mon Sep 17 00:00:00 2001 From: Pádraig Brady Date: Tue, 27 Oct 2015 13:13:59 +0000 Subject: all: quote string arguments in error messages These strings are often file names or other user specified parameters, which can give confusing errors in the presence of unexpected characters for example. * cfg.mk (sc_error_quotes): A new syntax check rule. * src/*.c: Wrap error() string arguments with quote(). * tests/: Adjust accordingly. * NEWS: Mention the improvement. --- src/ptx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ptx.c') diff --git a/src/ptx.c b/src/ptx.c index 2ccabb734..c489301a3 100644 --- a/src/ptx.c +++ b/src/ptx.c @@ -2076,7 +2076,7 @@ main (int argc, char **argv) if (optind < argc) { if (! freopen (argv[optind], "w", stdout)) - error (EXIT_FAILURE, errno, "%s", argv[optind]); + error (EXIT_FAILURE, errno, "%s", quote (argv[optind])); optind++; } -- cgit v1.2.3-70-g09d2