diff options
author | djm@openbsd.org <djm@openbsd.org> | 2021-04-03 08:18:40 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2021-04-03 08:23:02 +0200 |
commit | 31d8d231eb9377df474746a822d380c5d68d7ad6 (patch) | |
tree | ab5619a06e3944f016d7779b8313acb8bbf1c06a /readconf.c | |
parent | upstream: whitespace (tab after space) (diff) | |
download | openssh-31d8d231eb9377df474746a822d380c5d68d7ad6.tar.xz openssh-31d8d231eb9377df474746a822d380c5d68d7ad6.zip |
upstream: highly polished whitespace, mostly fixing spaces-for-tab
and bad indentation on continuation lines. Prompted by GHPR#185
OpenBSD-Commit-ID: e5c81f0cbdcc6144df1ce468ec1bac366d8ad6e9
Diffstat (limited to 'readconf.c')
-rw-r--r-- | readconf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/readconf.c b/readconf.c index 724974b70..0f27652b4 100644 --- a/readconf.c +++ b/readconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.c,v 1.352 2021/02/24 01:18:08 dtucker Exp $ */ +/* $OpenBSD: readconf.c,v 1.353 2021/04/03 06:18:40 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -676,7 +676,7 @@ match_cfg_line(Options *options, char **condition, struct passwd *pw, snprintf(uidstr, sizeof(uidstr), "%llu", (unsigned long long)pw->pw_uid); conn_hash_hex = ssh_connection_hash(thishost, host, - portstr, ruser); + portstr, ruser); keyalias = options->host_key_alias ? options->host_key_alias : host; @@ -1026,7 +1026,7 @@ parse_time: parse_multistate: arg = strdelim(&s); if ((value = parse_multistate_value(arg, filename, linenum, - multistate_ptr)) == -1) { + multistate_ptr)) == -1) { error("%s line %d: unsupported option \"%s\".", filename, linenum, arg); return -1; @@ -1994,7 +1994,7 @@ parse_pubkey_algos: arg = strdelim(&s); arg2 = strdelim(&s); value = parse_multistate_value(arg, filename, linenum, - multistate_yesnoaskconfirm); + multistate_yesnoaskconfirm); value2 = 0; /* unlimited lifespan by default */ if (value == 3 && arg2 != NULL) { /* allow "AddKeysToAgent confirm 5m" */ |