mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user