Skip to content
Snippets Groups Projects
Commit 380d5dff authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard
Browse files

wininet: Don't use strcasecmp.

parent 17779b44
No related branches found
No related tags found
No related merge requests found
......@@ -3745,7 +3745,7 @@ static BOOL FTP_ParseNextFile(INT nSocket, LPCWSTR lpszSearchFile, LPFILEPROPERT
pszToken = strtok(NULL, szSpace);
if(!pszToken) continue;
if(!strcasecmp(pszToken, "<DIR>")) {
if(!_strnicmp(pszToken, "<DIR>", -1)) {
lpfp->bIsDirectory = TRUE;
lpfp->nSize = 0;
TRACE("Is directory\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment