summaryrefslogtreecommitdiff
path: root/authfile.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2015-04-17 13:32:09 +0000
committerDamien Miller <djm@mindrot.org>2015-04-29 18:14:21 +1000
commit6b0d576bb87eca3efd2b309fcfe4edfefc289f9c (patch)
tree8448d225834624f10ef12a4580263314857a62f3 /authfile.c
parent44a8e7ce6f3ab4c2eb1ae49115c210b98e53c4df (diff)
upstream commit
s/recommended/required/ that private keys be og-r this wording change was made a while ago but got accidentally reverted
Diffstat (limited to 'authfile.c')
-rw-r--r--authfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/authfile.c b/authfile.c
index f955536da..728b136a7 100644
--- a/authfile.c
+++ b/authfile.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: authfile.c,v 1.113 2015/03/31 22:55:50 djm Exp $ */ 1/* $OpenBSD: authfile.c,v 1.114 2015/04/17 13:32:09 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2000, 2013 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000, 2013 Markus Friedl. All rights reserved.
4 * 4 *
@@ -186,7 +186,7 @@ sshkey_perm_ok(int fd, const char *filename)
186 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); 186 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
187 error("Permissions 0%3.3o for '%s' are too open.", 187 error("Permissions 0%3.3o for '%s' are too open.",
188 (u_int)st.st_mode & 0777, filename); 188 (u_int)st.st_mode & 0777, filename);
189 error("It is recommended that your private key files are NOT accessible by others."); 189 error("It is required that your private key files are NOT accessible by others.");
190 error("This private key will be ignored."); 190 error("This private key will be ignored.");
191 return SSH_ERR_KEY_BAD_PERMISSIONS; 191 return SSH_ERR_KEY_BAD_PERMISSIONS;
192 } 192 }