diff options
author | 2015-04-17 13:32:09 +0000 | |
---|---|---|
committer | 2015-04-17 13:32:09 +0000 | |
commit | 3e546e32260819bc55e469351dff1feba57d0f44 (patch) | |
tree | d57d2c680abdc6aa66adda4ba896d4c169d0e709 | |
parent | don't try to cleanup NULL KEX proposals in kex_prop_free(); (diff) | |
download | wireguard-openbsd-3e546e32260819bc55e469351dff1feba57d0f44.tar.xz wireguard-openbsd-3e546e32260819bc55e469351dff1feba57d0f44.zip |
s/recommended/required/ that private keys be og-r
this wording change was made a while ago but got accidentally reverted
-rw-r--r-- | usr.bin/ssh/authfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/authfile.c b/usr.bin/ssh/authfile.c index ee84196168b..78fb3ac98fe 100644 --- a/usr.bin/ssh/authfile.c +++ b/usr.bin/ssh/authfile.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authfile.c,v 1.113 2015/03/31 22:55:50 djm Exp $ */ +/* $OpenBSD: authfile.c,v 1.114 2015/04/17 13:32:09 djm Exp $ */ /* * Copyright (c) 2000, 2013 Markus Friedl. All rights reserved. * @@ -181,7 +181,7 @@ sshkey_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 SSH_ERR_KEY_BAD_PERMISSIONS; } |