summaryrefslogtreecommitdiffstats
path: root/win/tclWinPipe.c
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley@noemail.net>2002-03-24 11:41:48 (GMT)
committervincentdarley <vincentdarley@noemail.net>2002-03-24 11:41:48 (GMT)
commit2a347a34ce846bb9800016e1bca34a0b552ba6e2 (patch)
tree9e9a209ca39c12dd8d45b40c876c1478bd022c1a /win/tclWinPipe.c
parent6393b8117ff90cb65bd9a34cf4245083883bdc4b (diff)
downloadtcl-2a347a34ce846bb9800016e1bca34a0b552ba6e2.zip
tcl-2a347a34ce846bb9800016e1bca34a0b552ba6e2.tar.gz
tcl-2a347a34ce846bb9800016e1bca34a0b552ba6e2.tar.bz2
4 fs fixes
FossilOrigin-Name: d33368661952a4384e657612e1b3b49a2bd6b278
Diffstat (limited to 'win/tclWinPipe.c')
-rw-r--r--win/tclWinPipe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinPipe.c b/win/tclWinPipe.c
index cac423d..d20aa3d 100644
--- a/win/tclWinPipe.c
+++ b/win/tclWinPipe.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinPipe.c,v 1.23 2002/01/25 21:36:10 dgp Exp $
+ * RCS: @(#) $Id: tclWinPipe.c,v 1.24 2002/03/24 11:41:51 vincentdarley Exp $
*/
#include "tclWinInt.h"
@@ -1431,7 +1431,7 @@ ApplicationType(interp, originalName, fullName)
*/
CloseHandle(hFile);
- if ((ext != NULL) && (strcmp(ext, ".com") == 0)) {
+ if ((ext != NULL) && (stricmp(ext, ".com") == 0)) {
applType = APPL_DOS;
break;
}