diff options
author | 2021-04-03 06:18:40 +0000 | |
---|---|---|
committer | 2021-04-03 06:18:40 +0000 | |
commit | 74cb32ae89ef3aab8756491031877d2240175d36 (patch) | |
tree | 0dd4362e98276912a50f8dd6c111b94669d64201 /usr.bin/ssh/auth.c | |
parent | whitespace (tab after space) (diff) | |
download | wireguard-openbsd-74cb32ae89ef3aab8756491031877d2240175d36.tar.xz wireguard-openbsd-74cb32ae89ef3aab8756491031877d2240175d36.zip |
highly polished whitespace, mostly fixing spaces-for-tab and bad
indentation on continuation lines. Prompted by GHPR#185
Diffstat (limited to 'usr.bin/ssh/auth.c')
-rw-r--r-- | usr.bin/ssh/auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth.c b/usr.bin/ssh/auth.c index e40a96cea32..c52f7dc6434 100644 --- a/usr.bin/ssh/auth.c +++ b/usr.bin/ssh/auth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth.c,v 1.151 2020/12/22 00:12:22 djm Exp $ */ +/* $OpenBSD: auth.c,v 1.152 2021/04/03 06:18:40 djm Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -424,7 +424,7 @@ auth_openfile(const char *file, struct passwd *pw, int strict_modes, if ((fd = open(file, O_RDONLY|O_NONBLOCK)) == -1) { if (log_missing || errno != ENOENT) debug("Could not open %s '%s': %s", file_type, file, - strerror(errno)); + strerror(errno)); return NULL; } |