diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2015-03-24 01:11:13 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2015-03-24 01:11:13 +0000 |
commit | 3d88db26cea39052c02ef9826bbb03d4a0ec426b (patch) | |
tree | fb1e9022fedcfd7779af29feb805c1bdba2d4e92 /usr.bin/ssh/sshconnect.c | |
parent | 56aecc7bb4c6be0e10b829c9249284d11f985463 (diff) |
fix double-negative error message "ssh1 is not unsupported"
Diffstat (limited to 'usr.bin/ssh/sshconnect.c')
-rw-r--r-- | usr.bin/ssh/sshconnect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshconnect.c b/usr.bin/ssh/sshconnect.c index 97c6cfa4788..ac89c41b566 100644 --- a/usr.bin/ssh/sshconnect.c +++ b/usr.bin/ssh/sshconnect.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect.c,v 1.259 2015/01/28 22:36:00 djm Exp $ */ +/* $OpenBSD: sshconnect.c,v 1.260 2015/03/24 01:11:12 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1332,7 +1332,7 @@ ssh_login(Sensitive *sensitive, const char *orighost, ssh_kex(host, hostaddr); ssh_userauth1(local_user, server_user, host, sensitive); #else - fatal("ssh1 is not unsupported"); + fatal("ssh1 is not supported"); #endif } free(local_user); |