summaryrefslogtreecommitdiffstats
path: root/generic/tclFileName.c
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2005-03-15 18:41:32 (GMT)
committervincentdarley <vincentdarley>2005-03-15 18:41:32 (GMT)
commit04c179bb5098db811c7e1fc19fb7c8dbb5c03d56 (patch)
treee16f5b4d5d286bc9b6ba8561579355aec492adc2 /generic/tclFileName.c
parent54eca4bde86a1e41d123a643f2aadf95caf433da (diff)
downloadtcl-04c179bb5098db811c7e1fc19fb7c8dbb5c03d56.zip
tcl-04c179bb5098db811c7e1fc19fb7c8dbb5c03d56.tar.gz
tcl-04c179bb5098db811c7e1fc19fb7c8dbb5c03d56.tar.bz2
fix to file norm, file pathtype on windows reserved filenames - ensure build ok on unix
Diffstat (limited to 'generic/tclFileName.c')
-rw-r--r--generic/tclFileName.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/generic/tclFileName.c b/generic/tclFileName.c
index cc1f91a..5ccd455 100644
--- a/generic/tclFileName.c
+++ b/generic/tclFileName.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: tclFileName.c,v 1.40.2.8 2005/03/15 18:08:21 vincentdarley Exp $
+ * RCS: @(#) $Id: tclFileName.c,v 1.40.2.9 2005/03/15 18:41:32 vincentdarley Exp $
*/
#include "tclInt.h"
@@ -269,13 +269,19 @@ ExtractWinRoot(path, resultPtr, offset, typePtr)
abs = 5;
}
}
- } else if (stricmp(path, "prn") == 0) {
+ } else if ((path[0] == 'p' || path[0] == 'P')
+ && (path[1] == 'r' || path[1] == 'R')
+ && (path[2] == 'n' || path[2] == 'N')) {
/* Have match for 'prn' */
abs = 3;
- } else if (stricmp(path, "nul") == 0) {
+ } else if ((path[0] == 'n' || path[0] == 'N')
+ && (path[1] == 'u' || path[1] == 'U')
+ && (path[2] == 'l' || path[2] == 'L')) {
/* Have match for 'nul' */
abs = 3;
- } else if (stricmp(path, "aux") == 0) {
+ } else if ((path[0] == 'a' || path[0] == 'A')
+ && (path[1] == 'u' || path[1] == 'U')
+ && (path[2] == 'x' || path[2] == 'X')) {
/* Have match for 'aux' */
abs = 3;
}