From 6f3db35204d2ae98f5610134c30dc49266c07da7 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 23 Jan 2013 14:19:27 +0000 Subject: [PATCH] more strcase*->str* from last conf2 option commit SVN revision: 83175 --- src/bin/e_configure_option.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/bin/e_configure_option.c b/src/bin/e_configure_option.c index 8529abaca..67a3874d8 100644 --- a/src/bin/e_configure_option.c +++ b/src/bin/e_configure_option.c @@ -2595,12 +2595,12 @@ e_configure_option_ctx_update(E_Configure_Option_Ctx *ctx, const char *str) tag = eina_hash_find(tags_alias_hash, alias); if (eina_list_data_find(clist, tag)) { - if (strncasecmp(s, alias, e - s)) continue; + if (strncmp(s, alias, e - s)) continue; tmp = eina_list_free(tmp); break; } tlist = eina_list_remove(tlist, l); - if (strncasecmp(s, alias, e - s)) + if (strncmp(s, alias, e - s)) { tmp = eina_list_append(tmp, tag); continue; @@ -2622,12 +2622,12 @@ e_configure_option_ctx_update(E_Configure_Option_Ctx *ctx, const char *str) tag = eina_hash_find(tags_alias_hash, alias); if (eina_list_data_find(clist, tag)) { - if (strncasecmp(s, alias, e - s)) continue; + if (strncmp(s, alias, e - s)) continue; tmp = eina_list_free(tmp); break; } tlist = eina_list_remove(tlist, l); - if (strncasecmp(s, alias, e - s)) + if (strncmp(s, alias, e - s)) { tmp = eina_list_append(tmp, tag); continue; @@ -2652,12 +2652,12 @@ e_configure_option_ctx_update(E_Configure_Option_Ctx *ctx, const char *str) if ((!strstr(s, tag)) && (!strstr(tag, s))) continue; if (eina_list_data_find(clist, tag)) { - if (strncasecmp(s, tag, e - s)) continue; + if (strncmp(s, tag, e - s)) continue; tmp = eina_list_free(tmp); break; } tlist = eina_list_remove(tlist, l); - if (strncasecmp(s, tag, e - s)) + if (strncmp(s, tag, e - s)) { tmp = eina_list_append(tmp, tag); continue; @@ -2678,12 +2678,12 @@ e_configure_option_ctx_update(E_Configure_Option_Ctx *ctx, const char *str) if ((!strstr(s, tag)) && (!strstr(tag, s))) continue; if (eina_list_data_find(clist, tag)) { - if (strncasecmp(s, tag, e - s)) continue; + if (strncmp(s, tag, e - s)) continue; tmp = eina_list_free(tmp); break; } tlist = eina_list_remove(tlist, l); - if (strncasecmp(s, tag, e - s)) + if (strncmp(s, tag, e - s)) { tmp = eina_list_append(tmp, tag); continue;