diff options
author | 2005-12-28 22:46:06 +0000 | |
---|---|---|
committer | 2005-12-28 22:46:06 +0000 | |
commit | 73751d9195a6babde478c76d873b22ad7ade2d6a (patch) | |
tree | e8ef710509ca12a934847450dc6c91c7a0b992cb /usr.bin/ssh/channels.c | |
parent | Remove dead cruft. (diff) | |
download | wireguard-openbsd-73751d9195a6babde478c76d873b22ad7ade2d6a.tar.xz wireguard-openbsd-73751d9195a6babde478c76d873b22ad7ade2d6a.zip |
use 'break-in' for consistency; ok deraadt@ ok and input jmc@
Diffstat (limited to 'usr.bin/ssh/channels.c')
-rw-r--r-- | usr.bin/ssh/channels.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c index ac5a4a99244..50ca56293fd 100644 --- a/usr.bin/ssh/channels.c +++ b/usr.bin/ssh/channels.c @@ -39,7 +39,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: channels.c,v 1.229 2005/12/12 13:46:18 markus Exp $"); +RCSID("$OpenBSD: channels.c,v 1.230 2005/12/28 22:46:06 stevesk Exp $"); #include "ssh.h" #include "ssh1.h" @@ -2991,7 +2991,7 @@ deny_input_open(int type, u_int32_t seq, void *ctxt) error("deny_input_open: type %d", type); break; } - error("Warning: this is probably a break in attempt by a malicious server."); + error("Warning: this is probably a break-in attempt by a malicious server."); packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE); packet_put_int(rchan); packet_send(); |