diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2005-09-28 19:22:25 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2005-09-28 19:22:25 +0000 |
commit | dcb091caaf9e00e840520141c1a74fb3f0eeb1d2 (patch) | |
tree | 483b37f8f41a0ce565559a2a5340f2fe5c3c9e57 /winsup/cygwin/fhandler_fifo.cc | |
parent | 1204c515fe00335920c5707cc136e9562fd7cf38 (diff) | |
download | cygnal-dcb091caaf9e00e840520141c1a74fb3f0eeb1d2.tar.gz cygnal-dcb091caaf9e00e840520141c1a74fb3f0eeb1d2.tar.bz2 cygnal-dcb091caaf9e00e840520141c1a74fb3f0eeb1d2.zip |
Revert erroneous checkin.
Diffstat (limited to 'winsup/cygwin/fhandler_fifo.cc')
-rw-r--r-- | winsup/cygwin/fhandler_fifo.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/fhandler_fifo.cc b/winsup/cygwin/fhandler_fifo.cc index 03b4f892c..694a51819 100644 --- a/winsup/cygwin/fhandler_fifo.cc +++ b/winsup/cygwin/fhandler_fifo.cc @@ -179,14 +179,14 @@ out: } int -fhandler_fifo::dup (fhandler_base *child, HANDLE from_proc) +fhandler_fifo::dup (fhandler_base *child) { - int res = fhandler_pipe::dup (child, from_proc); + int res = fhandler_pipe::dup (child); if (!res) { fhandler_fifo *ff = (fhandler_fifo *) child; if (get_output_handle () - && !DuplicateHandle (from_proc, get_output_handle (), hMainProc, + && !DuplicateHandle (hMainProc, get_output_handle (), hMainProc, &ff->get_output_handle (), false, true, DUPLICATE_SAME_ACCESS)) { |