summaryrefslogtreecommitdiffstats
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 f2aec267..a49850c8 100644
--- a/authfile.c
+++ b/authfile.c
@@ -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;
}