diff options
author | 2008-11-01 06:43:33 +0000 | |
---|---|---|
committer | 2008-11-01 06:43:33 +0000 | |
commit | 92216a8c38daca4a6517e1535aa4a23bbdd4777a (patch) | |
tree | 675b62a1dc1bbb4b25f5434162e3435f78db26a7 | |
parent | change all callers of enterpgrp() to pre-allocate a pgrp or session if (diff) | |
download | wireguard-openbsd-92216a8c38daca4a6517e1535aa4a23bbdd4777a.tar.xz wireguard-openbsd-92216a8c38daca4a6517e1535aa4a23bbdd4777a.zip |
fix some typos in log messages; ok djm@
-rw-r--r-- | usr.bin/ssh/channels.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c index 65cb6ce579c..b2f4001dee4 100644 --- a/usr.bin/ssh/channels.c +++ b/usr.bin/ssh/channels.c @@ -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> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -686,7 +686,7 @@ channel_register_open_confirm(int id, channel_callback_fn *fn, void *ctx) Channel *c = channel_lookup(id); if (c == NULL) { - logit("channel_register_open_comfirm: %d: bad id", id); + logit("channel_register_open_confirm: %d: bad id", id); return; } c->open_confirm = fn; @@ -2363,10 +2363,10 @@ channel_input_status_confirm(int type, u_int32_t seq, void *ctxt) remote_id = packet_get_int(); 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) { - logit("channel_input_success_failure: %d: unknown", remote_id); + logit("channel_input_status_confirm: %d: unknown", remote_id); return; } ; |