Fix error message when chronyc can't open keyfile
This commit is contained in:
parent
54211f0f6e
commit
4048b200ed
1 changed files with 1 additions and 1 deletions
2
client.c
2
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue