summaryrefslogtreecommitdiff
path: root/sshconnect.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2015-03-24 01:11:12 +0000
committerDamien Miller <djm@mindrot.org>2015-03-27 12:00:33 +1100
commit53097b2022154edf96b4e8526af5666f979503f7 (patch)
tree240feb11b10b85cf051017411a953a056eee0277 /sshconnect.c
parent5c27e3b6ec2db711dfcd40e6359c0bcdd0b62ea9 (diff)
upstream commit
fix double-negative error message "ssh1 is not unsupported"
Diffstat (limited to 'sshconnect.c')
-rw-r--r--sshconnect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshconnect.c b/sshconnect.c
index 9e515066d..0a52ada40 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshconnect.c,v 1.259 2015/01/28 22:36:00 djm Exp $ */ 1/* $OpenBSD: sshconnect.c,v 1.260 2015/03/24 01:11:12 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
@@ -1358,7 +1358,7 @@ ssh_login(Sensitive *sensitive, const char *orighost,
1358 ssh_kex(host, hostaddr); 1358 ssh_kex(host, hostaddr);
1359 ssh_userauth1(local_user, server_user, host, sensitive); 1359 ssh_userauth1(local_user, server_user, host, sensitive);
1360#else 1360#else
1361 fatal("ssh1 is not unsupported"); 1361 fatal("ssh1 is not supported");
1362#endif 1362#endif
1363 } 1363 }
1364 free(local_user); 1364 free(local_user);