[channels.c]
     fix some typos in log messages; ok djm@
This commit is contained in:
Damien Miller 2008-11-03 19:26:35 +11:00
parent f7475d7e97
commit a009433333
2 changed files with 8 additions and 5 deletions

View File

@ -86,6 +86,9 @@
[sshconnect2.c] [sshconnect2.c]
sprinkle ARGSUSED on dispatch handlers sprinkle ARGSUSED on dispatch handlers
nuke stale unusued prototype nuke stale unusued prototype
- stevesk@cvs.openbsd.org 2008/11/01 06:43:33
[channels.c]
fix some typos in log messages; ok djm@
20080906 20080906
- (dtucker) [config.guess config.sub] Update to latest versions from - (dtucker) [config.guess config.sub] Update to latest versions from
@ -4820,4 +4823,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@ passwords between UnixWare and OpenServer they will still work. OK dtucker@
$Id: ChangeLog,v 1.5119 2008/11/03 08:26:18 djm Exp $ $Id: ChangeLog,v 1.5120 2008/11/03 08:26:35 djm Exp $

View File

@ -1,4 +1,4 @@
/* $OpenBSD: channels.c,v 1.286 2008/07/16 11:52:19 djm Exp $ */ /* $OpenBSD: channels.c,v 1.287 2008/11/01 06:43:33 stevesk Exp $ */
/* /*
* Author: Tatu Ylonen <ylo@cs.hut.fi> * Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * 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)
Channel *c = channel_lookup(id); Channel *c = channel_lookup(id);
if (c == NULL) { if (c == NULL) {
logit("channel_register_open_comfirm: %d: bad id", id); logit("channel_register_open_confirm: %d: bad id", id);
return; return;
} }
c->open_confirm = fn; c->open_confirm = fn;
@ -2385,10 +2385,10 @@ channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
remote_id = packet_get_int(); remote_id = packet_get_int();
packet_check_eom(); packet_check_eom();
debug2("channel_input_confirm: type %d id %d", type, remote_id); debug2("channel_input_status_confirm: type %d id %d", type, remote_id);
if ((c = channel_lookup(remote_id)) == NULL) { if ((c = channel_lookup(remote_id)) == NULL) {
logit("channel_input_success_failure: %d: unknown", remote_id); logit("channel_input_status_confirm: %d: unknown", remote_id);
return; return;
} }
; ;