diff options
author | djm <djm> | 2000-09-29 01:12:36 +0000 |
---|---|---|
committer | djm <djm> | 2000-09-29 01:12:36 +0000 |
commit | 3aed815c8d1460d46cfe5b196e426d168501330d (patch) | |
tree | 87d569d74947251dabab0e96cf890d4916552098 /authfile.c | |
parent | 96e0a0b610355742b956904876bbd750dbd89f4a (diff) | |
download | openssh-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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()) || |