summaryrefslogtreecommitdiffstats
path: root/sshconnect.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2020-12-20 23:38:00 +0000
committerDamien Miller <djm@mindrot.org>2020-12-21 10:52:28 +1100
commit729b05f59ded35483acef90a6f88aa03eae33b29 (patch)
tree574885e6cddda621c46df25a81803c3c2b416965 /sshconnect.c
parentb4c7cd1185c5dc0593d47eafcc1a34fda569dd1d (diff)
upstream: allow UserKnownHostsFile=none; feedback and ok markus@
Diffstat (limited to 'sshconnect.c')
-rw-r--r--sshconnect.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sshconnect.c b/sshconnect.c
index 59211416..c17e44ae 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect.c,v 1.346 2020/12/20 23:36:51 djm Exp $ */
+/* $OpenBSD: sshconnect.c,v 1.347 2020/12/20 23:38:00 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -949,6 +949,10 @@ check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port,
host_status = check_key_in_hostkeys(host_hostkeys, host_key,
&host_found);
+ /* If no host files were specified, then don't try to touch them */
+ if (!readonly && num_user_hostfiles == 0)
+ readonly = RDONLY;
+
/*
* Also perform check for the ip address, skip the check if we are
* localhost, looking for a certificate, or the hostname was an ip