Fix error message when chronyc can't open keyfile

This commit is contained in:
Miroslav Lichvar 2014-01-21 14:51:32 +01:00
parent 54211f0f6e
commit 4048b200ed

View file

@ -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;
}