Fix a old bug in dir it did only accpet lower letters as param

change from ansi _toupper to tchar  _totupper 
it is now both uncide and ansi compatible

svn path=/trunk/; revision=15088
This commit is contained in:
Magnus Olsen
2005-05-07 20:02:50 +00:00
parent fb0b90fd1b
commit 8dd7ee7eb4
+1 -1
View File
@@ -262,7 +262,7 @@ DirReadParam(LPTSTR Line, /* [IN] The line with the parameters & switches */
{
/* we save current character as it is and its upper case */
cCurChar = *Line;
cCurUChar = _toupper(*Line);
cCurUChar = _totupper(*Line);
/* 1st section (see README_DIR.txt) */
/* When a switch is expecting */