summaryrefslogtreecommitdiffstats
path: root/sftp.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-26 21:04:45 +0100
committerBen Lindstrom <mouring@eviladmin.org>2001-02-26 21:04:45 +0100
commit10b9bf95c07c0fb81f46b2df0e09afd7d3d1847b (patch)
tree30a0ef174dfae141420e529fb0220125666d65a4 /sftp.c
parent - (djm) Some systems (SCO3, NeXT) have weird saved uid semantics. (diff)
downloadopenssh-10b9bf95c07c0fb81f46b2df0e09afd7d3d1847b.tar.xz
openssh-10b9bf95c07c0fb81f46b2df0e09afd7d3d1847b.zip
- (bal) Applied shutdown() patch for sftp.c by Corinna Vinschen
<vinschen@redhat.com>
Diffstat (limited to 'sftp.c')
-rw-r--r--sftp.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sftp.c b/sftp.c
index b4775c02f..0fba6749f 100644
--- a/sftp.c
+++ b/sftp.c
@@ -246,11 +246,18 @@ main(int argc, char **argv)
interactive_loop(in, out);
+#if !defined(USE_PIPES)
+ shutdown(in, SHUT_RDWR);
+ shutdown(out, SHUT_RDWR);
+#endif
+
close(in);
close(out);
+#if !defined(HAVE_CYGWIN)
if (kill(sshpid, SIGHUP) == -1)
fatal("Couldn't terminate ssh process: %s", strerror(errno));
+#endif
if (waitpid(sshpid, NULL, 0) == -1)
fatal("Couldn't wait for ssh process: %s", strerror(errno));