diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2010-11-24 01:24:15 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2010-11-24 01:24:15 +0000 |
commit | 3df591cbc1aa4f3ba98cd1b3664552a0d2a6410d (patch) | |
tree | 6369d95fa3b617add535f1da66dcf324f1e5c285 /usr.bin/ssh | |
parent | 769ab957797af0ab319f140457ddf5e254419f45 (diff) |
remove a debug() that pollutes stderr on client connecting to a server
in debug mode (channel_close_fds is called transitively from the session
code post-fork); bz#1719, ok dtucker
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/channels.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c index 81a6198de4b..807559ef802 100644 --- a/usr.bin/ssh/channels.c +++ b/usr.bin/ssh/channels.c @@ -1,4 +1,4 @@ -/* $OpenBSD: channels.c,v 1.309 2010/08/05 13:08:42 djm Exp $ */ +/* $OpenBSD: channels.c,v 1.310 2010/11/24 01:24:14 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -368,9 +368,6 @@ channel_close_fd(int *fdp) static void channel_close_fds(Channel *c) { - debug3("channel %d: close_fds r %d w %d e %d", - c->self, c->rfd, c->wfd, c->efd); - channel_close_fd(&c->sock); channel_close_fd(&c->rfd); channel_close_fd(&c->wfd); |