summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-07-16 08:48:16 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-07-16 08:48:16 +0000
commitf6f6e2eaff6c6d149a4b8d23648f25664e2fa163 (patch)
tree7b6b0d737e991cf09810fa30b45f3c54a90ae70f /src/tools
parent6519412d599ecfa7e6ae9814abe3cefde8a82cb2 (diff)
Oops, meant to say "core_stricmp"
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/split.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/tools/split.c b/src/tools/split.c
index 0477a81b9ab..e0d3b774965 100644
--- a/src/tools/split.c
+++ b/src/tools/split.c
@@ -15,6 +15,7 @@
#include <ctype.h>
#include "astring.h"
#include "corefile.h"
+#include "corestr.h"
#include "sha1.h"
#define DEFAULT_SPLIT_SIZE 100
@@ -396,7 +397,7 @@ int main(int argc, char *argv[])
goto usage;
/* split command */
- if (stricmp(argv[1], "-split") == 0)
+ if (core_stricmp(argv[1], "-split") == 0)
{
if (argc != 4 && argc != 5)
goto usage;
@@ -404,7 +405,7 @@ int main(int argc, char *argv[])
}
/* join command */
- else if (stricmp(argv[1], "-join") == 0)
+ else if (core_stricmp(argv[1], "-join") == 0)
{
if (argc != 3 && argc != 4)
goto usage;
@@ -412,7 +413,7 @@ int main(int argc, char *argv[])
}
/* verify command */
- else if (stricmp(argv[1], "-verify") == 0)
+ else if (core_stricmp(argv[1], "-verify") == 0)
{
if (argc != 3)
goto usage;