summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPipe.c
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-12-01 00:08:36 (GMT)
committerhobbs <hobbs>1999-12-01 00:08:36 (GMT)
commit79bdb822ff78858fd0f4064fdd902ab472562f8e (patch)
tree9bd881a878bfb4fb72b29a617bd39d432c1dfcc3 /unix/tclUnixPipe.c
parentdad51dd35e51fb99f720f24336f04aacd1aa5d08 (diff)
downloadtcl-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.c3
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);