diff options
author | Damien Miller <djm@mindrot.org> | 2008-11-03 19:26:35 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2008-11-03 19:26:35 +1100 |
commit | a009433333ccb10b30e840435755eccd1e3fefd6 (patch) | |
tree | 9347f8a8362006afe45806b34b476e4ce48fcaa9 /channels.c | |
parent | f7475d7e97900323195b918942d0cf8d0489279f (diff) |
- stevesk@cvs.openbsd.org 2008/11/01 06:43:33
[channels.c]
fix some typos in log messages; ok djm@
Diffstat (limited to 'channels.c')
-rw-r--r-- | channels.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/channels.c b/channels.c index 69c99c9b2..4af7df5db 100644 --- a/channels.c +++ b/channels.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: channels.c,v 1.286 2008/07/16 11:52:19 djm Exp $ */ | 1 | /* $OpenBSD: channels.c,v 1.287 2008/11/01 06:43:33 stevesk 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 |
@@ -691,7 +691,7 @@ channel_register_open_confirm(int id, channel_callback_fn *fn, void *ctx) | |||
691 | Channel *c = channel_lookup(id); | 691 | Channel *c = channel_lookup(id); |
692 | 692 | ||
693 | if (c == NULL) { | 693 | if (c == NULL) { |
694 | logit("channel_register_open_comfirm: %d: bad id", id); | 694 | logit("channel_register_open_confirm: %d: bad id", id); |
695 | return; | 695 | return; |
696 | } | 696 | } |
697 | c->open_confirm = fn; | 697 | c->open_confirm = fn; |
@@ -2385,10 +2385,10 @@ channel_input_status_confirm(int type, u_int32_t seq, void *ctxt) | |||
2385 | remote_id = packet_get_int(); | 2385 | remote_id = packet_get_int(); |
2386 | packet_check_eom(); | 2386 | packet_check_eom(); |
2387 | 2387 | ||
2388 | debug2("channel_input_confirm: type %d id %d", type, remote_id); | 2388 | debug2("channel_input_status_confirm: type %d id %d", type, remote_id); |
2389 | 2389 | ||
2390 | if ((c = channel_lookup(remote_id)) == NULL) { | 2390 | if ((c = channel_lookup(remote_id)) == NULL) { |
2391 | logit("channel_input_success_failure: %d: unknown", remote_id); | 2391 | logit("channel_input_status_confirm: %d: unknown", remote_id); |
2392 | return; | 2392 | return; |
2393 | } | 2393 | } |
2394 | ; | 2394 | ; |