s/recommended/required in warning:

"It is recommended that your private key files are NOT accessible by others."

since there is no way to skip this check; bz#1878
This commit is contained in:
Damien Miller 2011-04-12 15:39:35 +10:00
parent db59a3fb22
commit a10abe9e4b
1 changed files with 1 additions and 1 deletions

View File

@ -606,7 +606,7 @@ key_perm_ok(int fd, const char *filename)
error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
error("Permissions 0%3.3o for '%s' are too open.",
(u_int)st.st_mode & 0777, filename);
error("It is recommended that your private key files are NOT accessible by others.");
error("It is required that your private key files are NOT accessible by others.");
error("This private key will be ignored.");
return 0;
}