summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2020-09-09 21:57:27 +0000
committerDarren Tucker <dtucker@dtucker.net>2020-09-16 14:21:53 +1000
commitc3c786c3a0973331ee0922b2c51832a3b8d7f20f (patch)
tree5fc3244a8fb98debc876c8428b72c7154f53eead
parentf2950baf0bafe6aa20dfe2e8d1ca4b23528df617 (diff)
upstream: For the hostkey confirmation message:
> Are you sure you want to continue connecting (yes/no/[fingerprint])? compare the fingerprint case sensitively; spotted Patrik Lundin ok dtucker OpenBSD-Commit-ID: 73097afee1b3a5929324e345ba4a4a42347409f2
-rw-r--r--sshconnect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshconnect.c b/sshconnect.c
index 63a97d039..9ec0618a9 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshconnect.c,v 1.331 2020/08/11 09:49:57 djm Exp $ */ 1/* $OpenBSD: sshconnect.c,v 1.332 2020/09/09 21:57:27 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -597,7 +597,7 @@ confirm(const char *prompt, const char *fingerprint)
597 if (p[0] == '\0' || strcasecmp(p, "no") == 0) 597 if (p[0] == '\0' || strcasecmp(p, "no") == 0)
598 ret = 0; 598 ret = 0;
599 else if (strcasecmp(p, "yes") == 0 || (fingerprint != NULL && 599 else if (strcasecmp(p, "yes") == 0 || (fingerprint != NULL &&
600 strcasecmp(p, fingerprint) == 0)) 600 strcmp(p, fingerprint) == 0))
601 ret = 1; 601 ret = 1;
602 free(cp); 602 free(cp);
603 if (ret != -1) 603 if (ret != -1)