use quotes when printing password file

This commit is contained in:
Nikos Mavrogiannopoulos
2013-03-17 09:56:07 +01:00
parent c6f3f5b428
commit 55c62d25b9

View File

@@ -271,7 +271,7 @@ static void check_cfg( struct cfg_st *config)
if (config->plain_passwd != NULL) {
if (access(config->plain_passwd, R_OK) != 0) {
fprintf(stderr, "cannot access password file %s\n", config->plain_passwd);
fprintf(stderr, "cannot access password file '%s'\n", config->plain_passwd);
exit(1);
}
}