diff options
Diffstat (limited to 'sh.c')
-rw-r--r-- | sh.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -632,7 +632,7 @@ static void close_all() { struct close_me *c; for (c=close_me_head; c; c=c->next) { - close(c->fd); + mark_closed(c->fd); } close_me_head = NULL; } |