summaryrefslogtreecommitdiff
path: root/session.c
diff options
context:
space:
mode:
Diffstat (limited to 'session.c')
-rw-r--r--session.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/session.c b/session.c
index 7a97ae8d6..3eba513de 100644
--- a/session.c
+++ b/session.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: session.c,v 1.229 2008/02/20 15:25:26 markus Exp $ */ 1/* $OpenBSD: session.c,v 1.230 2008/02/22 05:58:56 djm Exp $ */
2/* 2/*
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved 4 * All rights reserved
@@ -488,8 +488,6 @@ do_exec_no_pty(Session *s, const char *command)
488 cray_init_job(s->pw); /* set up cray jid and tmpdir */ 488 cray_init_job(s->pw); /* set up cray jid and tmpdir */
489#endif 489#endif
490 490
491 closefrom(STDERR_FILENO + 1);
492
493 /* Do processing for the child (exec command etc). */ 491 /* Do processing for the child (exec command etc). */
494 do_child(s, command); 492 do_child(s, command);
495 /* NOTREACHED */ 493 /* NOTREACHED */
@@ -610,8 +608,6 @@ do_exec_pty(Session *s, const char *command)
610# endif 608# endif
611#endif 609#endif
612 610
613 closefrom(STDERR_FILENO + 1);
614
615 /* Do common processing for the child, such as execing the command. */ 611 /* Do common processing for the child, such as execing the command. */
616 do_child(s, command); 612 do_child(s, command);
617 /* NOTREACHED */ 613 /* NOTREACHED */
@@ -1345,6 +1341,8 @@ safely_chroot(const char *path, uid_t uid)
1345 1341
1346 } 1342 }
1347 1343
1344 closefrom(STDERR_FILENO + 1);
1345
1348 if (chdir(path) == -1) 1346 if (chdir(path) == -1)
1349 fatal("Unable to chdir to chroot path \"%s\": " 1347 fatal("Unable to chdir to chroot path \"%s\": "
1350 "%s", path, strerror(errno)); 1348 "%s", path, strerror(errno));