From 1be3ebb61b62f36ab70917859a10a3daf8b9ffc9 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Mon, 22 Dec 2008 23:35:35 +0000 Subject: [PATCH] don't define strcasecmp to strcmp, use _stricmp, and define strcasecmp to _strnicmp. svn path=/trunk/; revision=38284 --- reactos/base/applications/network/ftp/fake.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/base/applications/network/ftp/fake.h b/reactos/base/applications/network/ftp/fake.h index 68c94cc749f..f622c401970 100644 --- a/reactos/base/applications/network/ftp/fake.h +++ b/reactos/base/applications/network/ftp/fake.h @@ -6,8 +6,8 @@ #define getwd getcwd -#define strcasecmp strcmp -#define strncasecmp strnicmp +#define strcasecmp _stricmp +#define strncasecmp _strnicmp struct timezone { int tz_minuteswest; /* minutes W of Greenwich */