--- a/archivers/qpak.c Thu Mar 15 07:33:14 2007 +0000
+++ b/archivers/qpak.c Thu Mar 15 08:16:23 2007 +0000
@@ -40,8 +40,8 @@
#include "physfs_internal.h"
#if 1 /* Make this case insensitive? */
-#define QPAK_strcmp(x, y) __PHYSFS_platformStricmp(x, y)
-#define QPAK_strncmp(x, y, z) __PHYSFS_platformStrnicmp(x, y, z)
+#define QPAK_strcmp(x, y) __PHYSFS_stricmpASCII(x, y)
+#define QPAK_strncmp(x, y, z) __PHYSFS_strnicmpASCII(x, y, z)
#else
#define QPAK_strcmp(x, y) strcmp(x, y)
#define QPAK_strncmp(x, y, z) strncmp(x, y, z)