diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2005-07-28 15:27:55 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2005-07-28 15:27:55 (GMT) |
commit | 0be148514fedc3d09486999c9668c3f161ab594f (patch) | |
tree | 7ba16447fabfdc490e4f2e994c70b93f0f086cad /generic/tclPipe.c | |
parent | d73980bd58c2e2a0a72f883f093f4a3888517243 (diff) | |
download | tcl-0be148514fedc3d09486999c9668c3f161ab594f.zip tcl-0be148514fedc3d09486999c9668c3f161ab594f.tar.gz tcl-0be148514fedc3d09486999c9668c3f161ab594f.tar.bz2 |
Backport of fix for [Bug 1245953]
Diffstat (limited to 'generic/tclPipe.c')
-rw-r--r-- | generic/tclPipe.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/generic/tclPipe.c b/generic/tclPipe.c index 7339926..fc0e6c0 100644 --- a/generic/tclPipe.c +++ b/generic/tclPipe.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclPipe.c,v 1.7.2.1 2004/07/02 23:37:31 hobbs Exp $ + * RCS: @(#) $Id: tclPipe.c,v 1.7.2.2 2005/07/28 15:27:58 dkf Exp $ */ #include "tclInt.h" @@ -605,7 +605,13 @@ TclCreatePipeline(interp, argc, argv, pidArrayPtr, inPipePtr, if (*p == '>') { p++; atOK = 0; - flags = O_WRONLY | O_CREAT; + + /* + * Note that the O_APPEND flag only has an effect on POSIX + * platforms. On Windows, we just have to carry on regardless. + */ + + flags = O_WRONLY | O_CREAT | O_APPEND; } if (*p == '&') { if (errorClose != 0) { |