aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssh/authfile.c
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2002-06-27 22:42:11 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2002-06-27 22:42:11 +0000
commit989dd127e4338c155f965057162a34a944a88bf8 (patch)
tree8b0c3ca50a9406d306d417f78b63f73616b80615 /crypto/openssh/authfile.c
parentf4df40b21862e0b3c0a20fce0dfa399f4c3d6cd7 (diff)
downloadsrc-989dd127e4338c155f965057162a34a944a88bf8.tar.gz
src-989dd127e4338c155f965057162a34a944a88bf8.zip
Forcibly revert to mainline.
Notes
Notes: svn path=/head/; revision=98941
Diffstat (limited to 'crypto/openssh/authfile.c')
-rw-r--r--crypto/openssh/authfile.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/openssh/authfile.c b/crypto/openssh/authfile.c
index 6b632299e604..6d936de56e39 100644
--- a/crypto/openssh/authfile.c
+++ b/crypto/openssh/authfile.c
@@ -37,7 +37,6 @@
#include "includes.h"
RCSID("$OpenBSD: authfile.c,v 1.49 2002/05/23 19:24:30 markus Exp $");
-RCSID("$FreeBSD$");
#include <openssl/err.h>
#include <openssl/evp.h>
@@ -485,6 +484,9 @@ key_perm_ok(int fd, const char *filename)
* permissions of the file. if the key owned by a different user,
* then we don't care.
*/
+#ifdef HAVE_CYGWIN
+ if (check_ntsec(filename))
+#endif
if ((st.st_uid == getuid()) && (st.st_mode & 077) != 0) {
error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
error("@ WARNING: UNPROTECTED PRIVATE KEY FILE! @");