summaryrefslogtreecommitdiff
path: root/authfile.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2011-04-12 15:39:35 +1000
committerDamien Miller <djm@mindrot.org>2011-04-12 15:39:35 +1000
commita10abe9e4be4ca3b5da71c34c6f5f1844336958e (patch)
tree9394d53b6857ce16d58a224317fce39e0111c06c /authfile.c
parentdb59a3fb22799c83bb979154a1110ba57961ef21 (diff)
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
Diffstat (limited to 'authfile.c')
-rw-r--r--authfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/authfile.c b/authfile.c
index f2aec267a..a49850c89 100644
--- a/authfile.c
+++ b/authfile.c
@@ -606,7 +606,7 @@ key_perm_ok(int fd, const char *filename)
606 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); 606 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
607 error("Permissions 0%3.3o for '%s' are too open.", 607 error("Permissions 0%3.3o for '%s' are too open.",
608 (u_int)st.st_mode & 0777, filename); 608 (u_int)st.st_mode & 0777, filename);
609 error("It is recommended that your private key files are NOT accessible by others."); 609 error("It is required that your private key files are NOT accessible by others.");
610 error("This private key will be ignored."); 610 error("This private key will be ignored.");
611 return 0; 611 return 0;
612 } 612 }