summaryrefslogtreecommitdiff
path: root/authfile.c
diff options
context:
space:
mode:
authordjm <djm>2000-09-29 01:12:36 +0000
committerdjm <djm>2000-09-29 01:12:36 +0000
commit3aed815c8d1460d46cfe5b196e426d168501330d (patch)
tree87d569d74947251dabab0e96cf890d4916552098 /authfile.c
parent96e0a0b610355742b956904876bbd750dbd89f4a (diff)
downloadopenssh-3aed815c8d1460d46cfe5b196e426d168501330d.tar.gz
- (djm) Clean up. Strip some unnecessary differences with OpenBSD's code,
tidy necessary differences. Use Markus' new debugN() in entropy.c
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 66bdc0ef..c8eac189 100644
--- a/authfile.c
+++ b/authfile.c
@@ -479,9 +479,9 @@ load_private_key(const char *filename, const char *passphrase, Key *key,
if (fd < 0)
return 0;
- /* check owner and modes. */
+ /* check owner and modes */
#ifdef HAVE_CYGWIN
- if (check_ntsec(filename))
+ if (check_ntsec(filename))
#endif
if (fstat(fd, &st) < 0 ||
(st.st_uid != 0 && st.st_uid != getuid()) ||