View | Details | Raw Unified | Return to bug 1719
Collapse All | Expand All

(-)channels.c (-3 lines)
Lines 368-376 channel_close_fd(int *fdp) Link Here
368
static void
368
static void
369
channel_close_fds(Channel *c)
369
channel_close_fds(Channel *c)
370
{
370
{
371
	debug3("channel %d: close_fds r %d w %d e %d",
372
	    c->self, c->rfd, c->wfd, c->efd);
373
374
	channel_close_fd(&c->sock);
371
	channel_close_fd(&c->sock);
375
	channel_close_fd(&c->rfd);
372
	channel_close_fd(&c->rfd);
376
	channel_close_fd(&c->wfd);
373
	channel_close_fd(&c->wfd);

Return to bug 1719