diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-09-14 20:25:15 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-09-14 20:25:15 +0000 |
commit | 805380b0a74217124ed2a6d153d3e9280a22addb (patch) | |
tree | 4ba67f62c976f7699b2d18789682f727dab75b3c /usr.bin/ssh | |
parent | b2fc4421b497da9e420c51669d2504c7d5c202a2 (diff) |
typo
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/clientloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index 4f5c39c9273..7400a17a607 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -59,7 +59,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: clientloop.c,v 1.34 2000/09/07 20:40:30 markus Exp $"); +RCSID("$OpenBSD: clientloop.c,v 1.35 2000/09/14 20:25:14 markus Exp $"); #include "xmalloc.h" #include "ssh.h" @@ -1148,7 +1148,7 @@ client_input_channel_req(int id, void *arg) c = channel_lookup(id); if (c == NULL) - fatal("session_input_channel_req: channel %d: bad channel", id); + fatal("client_input_channel_req: channel %d: bad channel", id); if (session_ident == -1) { error("client_input_channel_req: no channel %d", id); |