From 4124ebe34d7779ca400b52239a68a74bfa432af6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C3=98yvind=20Harboe?= <oyvind.harboe@zylin.com>
Date: Mon, 11 Apr 2011 14:55:22 +0200
Subject: [PATCH 1/2] remove stricmp usage

---
 src/rtos/rtos.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/rtos/rtos.c b/src/rtos/rtos.c
index c22c1c0..5d130c5 100644
--- a/src/rtos/rtos.c
+++ b/src/rtos/rtos.c
@@ -75,7 +75,7 @@ int rtos_create(Jim_GetOptInfo *goi, struct target * target)
 	Jim_GetOpt_String(goi, &cp, NULL);
 	/* now does target type exist */
 
-	if ( 0 == stricmp( cp, "auto") )
+	if ( 0 == strcmp( cp, "auto") )
 	{
 		// auto detection of RTOS
 		target->rtos_auto_detect = true;
@@ -115,7 +115,7 @@ int rtos_create(Jim_GetOptInfo *goi, struct target * target)
 	target->rtos->symbols = NULL;
 	target->rtos->target = target;
 
-	if ( 0 != stricmp( cp, "auto") )
+	if ( 0 != strcmp( cp, "auto") )
 	{
 		target->rtos->type->create( target );
 	}
-- 
1.7.2.3

