diff options
author | hobbs <hobbs> | 1999-12-01 00:08:36 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-12-01 00:08:36 (GMT) |
commit | 79bdb822ff78858fd0f4064fdd902ab472562f8e (patch) | |
tree | 9bd881a878bfb4fb72b29a617bd39d432c1dfcc3 /unix/tclUnixPipe.c | |
parent | dad51dd35e51fb99f720f24336f04aacd1aa5d08 (diff) | |
download | tcl-79bdb822ff78858fd0f4064fdd902ab472562f8e.zip tcl-79bdb822ff78858fd0f4064fdd902ab472562f8e.tar.gz tcl-79bdb822ff78858fd0f4064fdd902ab472562f8e.tar.bz2 |
* win/tclWinTime.c: fixed handling of %Z on NT for time zones
that don't have DST.
Diffstat (limited to 'unix/tclUnixPipe.c')
-rw-r--r-- | unix/tclUnixPipe.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/unix/tclUnixPipe.c b/unix/tclUnixPipe.c index 238801e..3db9228 100644 --- a/unix/tclUnixPipe.c +++ b/unix/tclUnixPipe.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: tclUnixPipe.c,v 1.5 1999/11/30 08:37:15 hobbs Exp $ + * RCS: @(#) $Id: tclUnixPipe.c,v 1.6 1999/12/01 00:08:36 hobbs Exp $ */ #include "tclInt.h" @@ -776,7 +776,6 @@ PipeBlockModeProc(instanceData, mode) if (fcntl(fd, F_SETFL, curStatus) < 0) { return errno; } - curStatus = fcntl(fd, F_GETFL); } if (psPtr->outFile) { fd = GetFd(psPtr->outFile); |