From 159b565b390687258ee65a3b66596e118752063c Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Fri, 22 May 2015 12:33:13 +0000 Subject: replace strcmp to mir_strcmp git-svn-id: http://svn.miranda-ng.org/main/trunk@13752 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Xfire/src/variables.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'protocols/Xfire/src/variables.cpp') diff --git a/protocols/Xfire/src/variables.cpp b/protocols/Xfire/src/variables.cpp index 45873fd9a4..1cf26c35be 100644 --- a/protocols/Xfire/src/variables.cpp +++ b/protocols/Xfire/src/variables.cpp @@ -165,13 +165,13 @@ char* XFireGetFoldersPath(char * pathtype) {// Get XFire folder path static char path[1024]; path[0] = 0; if (ServiceExists(MS_FOLDERS_REGISTER_PATH)){ - if (!strcmp(pathtype, "Avatar")){ + if (!mir_strcmp(pathtype, "Avatar")){ FoldersGetCustomPath(XFireAvatarFolder, path, 1024, ""); } - if (!strcmp(pathtype, "IniFile")){ + if (!mir_strcmp(pathtype, "IniFile")){ FoldersGetCustomPath(XFireWorkingFolder, path, 1024, ""); } - if (!strcmp(pathtype, "IconsFile")){ + if (!mir_strcmp(pathtype, "IconsFile")){ FoldersGetCustomPath(XFireIconFolder, path, 1024, ""); } strcat(path, "\\"); @@ -198,7 +198,7 @@ char* XFireGetFoldersPath(char * pathtype) strcat(BaseFolder, "XFire"); strcat(BaseFolder, "\\"); /*******BASE********/ - if (!strcmp(pathtype, "Avatar")){ + if (!mir_strcmp(pathtype, "Avatar")){ strcat(BaseFolder, "Avatars"); strcat(BaseFolder, "\\"); } -- cgit v1.2.3