From decda45734563d4f7d61355dcaf9318091250f37 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 1 Apr 2011 09:53:44 +0100 Subject: [PATCH] fish: Fix incorrect path passed to perror. Fix commit b8e1dee73a1deef1bfd5937e2abfbe9afef7b1ef. --- fish/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish/config.c b/fish/config.c index c92bc4e..c1d34fb 100644 --- a/fish/config.c +++ b/fish/config.c @@ -116,7 +116,7 @@ parse_config (void) } if (fclose (fp) == -1) { - perror (path); + perror (etc_filename); exit (EXIT_FAILURE); } -- 1.8.3.1