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

(-)ftp.c (-2 / +3 lines)
Lines 422-428 Link Here
422
	io->err = 0;
422
	io->err = 0;
423
    close(io->csd);
423
    close(io->csd);
424
    io->csd = -1;
424
    io->csd = -1;
425
    return io->err ? -1 : 0;
425
    r = io->err ? -1 : 0;
426
    free(io);
427
    return (r);
426
}
428
}
427
429
428
static FILE *
430
static FILE *
429
----------------------------------------

Return to bug 27506