From: Miroslav Lichvar Date: Tue, 21 Jan 2014 13:51:32 +0000 (+0100) Subject: Fix error message when chronyc can't open keyfile X-Git-Tag: 1.30-pre1~146 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4048b200edd9e5fd8453dd2ddcc66a522e642a9d;p=thirdparty%2Fchrony.git Fix error message when chronyc can't open keyfile --- diff --git a/client.c b/client.c index 95e68412..8ce3f457 100644 --- a/client.c +++ b/client.c @@ -2579,7 +2579,7 @@ authenticate_from_config(const char *filename) in = fopen(keyfile, "r"); if (!in) { - fprintf(stderr, "Could not open keyfile %s\n", filename); + fprintf(stderr, "Could not open keyfile %s\n", keyfile); return 0; }