summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hook/wee-hook-info-hashtable.c4
-rw-r--r--src/core/hook/wee-hook-info.c4
-rw-r--r--src/core/hook/wee-hook-infolist.c4
-rw-r--r--src/core/wee-infolist.c12
-rw-r--r--src/plugins/guile/weechat-guile.c2
-rw-r--r--src/plugins/javascript/weechat-js.cpp2
-rw-r--r--src/plugins/lua/weechat-lua.c2
-rw-r--r--src/plugins/perl/weechat-perl.c2
-rw-r--r--src/plugins/php/weechat-php.c2
-rw-r--r--src/plugins/python/weechat-python.c2
-rw-r--r--src/plugins/ruby/weechat-ruby.c2
-rw-r--r--src/plugins/tcl/weechat-tcl.c2
12 files changed, 20 insertions, 20 deletions
diff --git a/src/core/hook/wee-hook-info-hashtable.c b/src/core/hook/wee-hook-info-hashtable.c
index 3665276a7..1734c8704 100644
--- a/src/core/hook/wee-hook-info-hashtable.c
+++ b/src/core/hook/wee-hook-info-hashtable.c
@@ -123,8 +123,8 @@ hook_info_get_hashtable (struct t_weechat_plugin *plugin, const char *info_name,
if (!ptr_hook->deleted
&& !ptr_hook->running
- && (string_strcasecmp (HOOK_INFO_HASHTABLE(ptr_hook, info_name),
- info_name) == 0))
+ && (string_strcmp (HOOK_INFO_HASHTABLE(ptr_hook, info_name),
+ info_name) == 0))
{
ptr_hook->running = 1;
value = (HOOK_INFO_HASHTABLE(ptr_hook, callback))
diff --git a/src/core/hook/wee-hook-info.c b/src/core/hook/wee-hook-info.c
index 53d3525ea..9d96a5252 100644
--- a/src/core/hook/wee-hook-info.c
+++ b/src/core/hook/wee-hook-info.c
@@ -122,8 +122,8 @@ hook_info_get (struct t_weechat_plugin *plugin, const char *info_name,
if (!ptr_hook->deleted
&& !ptr_hook->running
- && (string_strcasecmp (HOOK_INFO(ptr_hook, info_name),
- info_name) == 0))
+ && (string_strcmp (HOOK_INFO(ptr_hook, info_name),
+ info_name) == 0))
{
ptr_hook->running = 1;
value = (HOOK_INFO(ptr_hook, callback))
diff --git a/src/core/hook/wee-hook-infolist.c b/src/core/hook/wee-hook-infolist.c
index 3c0162482..a3a5f29cc 100644
--- a/src/core/hook/wee-hook-infolist.c
+++ b/src/core/hook/wee-hook-infolist.c
@@ -123,8 +123,8 @@ hook_infolist_get (struct t_weechat_plugin *plugin, const char *infolist_name,
if (!ptr_hook->deleted
&& !ptr_hook->running
- && (string_strcasecmp (HOOK_INFOLIST(ptr_hook, infolist_name),
- infolist_name) == 0))
+ && (string_strcmp (HOOK_INFOLIST(ptr_hook, infolist_name),
+ infolist_name) == 0))
{
ptr_hook->running = 1;
value = (HOOK_INFOLIST(ptr_hook, callback))
diff --git a/src/core/wee-infolist.c b/src/core/wee-infolist.c
index 51f0a32bd..9ae9d35a5 100644
--- a/src/core/wee-infolist.c
+++ b/src/core/wee-infolist.c
@@ -366,7 +366,7 @@ infolist_search_var (struct t_infolist *infolist, const char *name)
for (ptr_var = infolist->ptr_item->vars; ptr_var;
ptr_var = ptr_var->next_var)
{
- if (string_strcasecmp (ptr_var->name, name) == 0)
+ if (string_strcmp (ptr_var->name, name) == 0)
return ptr_var;
}
@@ -447,7 +447,7 @@ infolist_integer (struct t_infolist *infolist, const char *var)
for (ptr_var = infolist->ptr_item->vars; ptr_var;
ptr_var = ptr_var->next_var)
{
- if (string_strcasecmp (ptr_var->name, var) == 0)
+ if (string_strcmp (ptr_var->name, var) == 0)
{
if (ptr_var->type == INFOLIST_INTEGER)
return *((int *)ptr_var->value);
@@ -475,7 +475,7 @@ infolist_string (struct t_infolist *infolist, const char *var)
for (ptr_var = infolist->ptr_item->vars; ptr_var;
ptr_var = ptr_var->next_var)
{
- if (string_strcasecmp (ptr_var->name, var) == 0)
+ if (string_strcmp (ptr_var->name, var) == 0)
{
if (ptr_var->type == INFOLIST_STRING)
return (char *)ptr_var->value;
@@ -503,7 +503,7 @@ infolist_pointer (struct t_infolist *infolist, const char *var)
for (ptr_var = infolist->ptr_item->vars; ptr_var;
ptr_var = ptr_var->next_var)
{
- if (string_strcasecmp (ptr_var->name, var) == 0)
+ if (string_strcmp (ptr_var->name, var) == 0)
{
if (ptr_var->type == INFOLIST_POINTER)
return ptr_var->value;
@@ -534,7 +534,7 @@ infolist_buffer (struct t_infolist *infolist, const char *var,
for (ptr_var = infolist->ptr_item->vars; ptr_var;
ptr_var = ptr_var->next_var)
{
- if (string_strcasecmp (ptr_var->name, var) == 0)
+ if (string_strcmp (ptr_var->name, var) == 0)
{
if (ptr_var->type == INFOLIST_BUFFER)
{
@@ -565,7 +565,7 @@ infolist_time (struct t_infolist *infolist, const char *var)
for (ptr_var = infolist->ptr_item->vars; ptr_var;
ptr_var = ptr_var->next_var)
{
- if (string_strcasecmp (ptr_var->name, var) == 0)
+ if (string_strcmp (ptr_var->name, var) == 0)
{
if (ptr_var->type == INFOLIST_TIME)
return *((time_t *)ptr_var->value);
diff --git a/src/plugins/guile/weechat-guile.c b/src/plugins/guile/weechat-guile.c
index 88fb2756c..40c8bb3e5 100644
--- a/src/plugins/guile/weechat-guile.c
+++ b/src/plugins/guile/weechat-guile.c
@@ -1011,7 +1011,7 @@ weechat_guile_infolist_cb (const void *pointer, void *data,
if (!infolist_name || !infolist_name[0])
return NULL;
- if (weechat_strcasecmp (infolist_name, "guile_script") == 0)
+ if (weechat_strcmp (infolist_name, "guile_script") == 0)
{
return plugin_script_infolist_list_scripts (weechat_guile_plugin,
guile_scripts, obj_pointer,
diff --git a/src/plugins/javascript/weechat-js.cpp b/src/plugins/javascript/weechat-js.cpp
index 6b9555c17..7c079af8f 100644
--- a/src/plugins/javascript/weechat-js.cpp
+++ b/src/plugins/javascript/weechat-js.cpp
@@ -794,7 +794,7 @@ weechat_js_infolist_cb (const void *pointer, void *data,
if (!infolist_name || !infolist_name[0])
return NULL;
- if (weechat_strcasecmp (infolist_name, "javascript_script") == 0)
+ if (weechat_strcmp (infolist_name, "javascript_script") == 0)
{
return plugin_script_infolist_list_scripts (weechat_js_plugin,
js_scripts, obj_pointer,
diff --git a/src/plugins/lua/weechat-lua.c b/src/plugins/lua/weechat-lua.c
index 28c18317b..95076fa3f 100644
--- a/src/plugins/lua/weechat-lua.c
+++ b/src/plugins/lua/weechat-lua.c
@@ -1110,7 +1110,7 @@ weechat_lua_infolist_cb (const void *pointer, void *data,
if (!infolist_name || !infolist_name[0])
return NULL;
- if (weechat_strcasecmp (infolist_name, "lua_script") == 0)
+ if (weechat_strcmp (infolist_name, "lua_script") == 0)
{
return plugin_script_infolist_list_scripts (weechat_lua_plugin,
lua_scripts, obj_pointer,
diff --git a/src/plugins/perl/weechat-perl.c b/src/plugins/perl/weechat-perl.c
index c44315b1f..74375e347 100644
--- a/src/plugins/perl/weechat-perl.c
+++ b/src/plugins/perl/weechat-perl.c
@@ -1093,7 +1093,7 @@ weechat_perl_infolist_cb (const void *pointer, void *data,
if (!infolist_name || !infolist_name[0])
return NULL;
- if (weechat_strcasecmp (infolist_name, "perl_script") == 0)
+ if (weechat_strcmp (infolist_name, "perl_script") == 0)
{
return plugin_script_infolist_list_scripts (weechat_perl_plugin,
perl_scripts, obj_pointer,
diff --git a/src/plugins/php/weechat-php.c b/src/plugins/php/weechat-php.c
index 8528a3e5f..928e0e268 100644
--- a/src/plugins/php/weechat-php.c
+++ b/src/plugins/php/weechat-php.c
@@ -1113,7 +1113,7 @@ weechat_php_infolist_cb (const void *pointer, void *data,
if (!infolist_name || !infolist_name[0])
return NULL;
- if (weechat_strcasecmp (infolist_name, "php_script") == 0)
+ if (weechat_strcmp (infolist_name, "php_script") == 0)
{
return plugin_script_infolist_list_scripts (weechat_php_plugin,
php_scripts, obj_pointer,
diff --git a/src/plugins/python/weechat-python.c b/src/plugins/python/weechat-python.c
index bdba2a123..a60209227 100644
--- a/src/plugins/python/weechat-python.c
+++ b/src/plugins/python/weechat-python.c
@@ -1336,7 +1336,7 @@ weechat_python_infolist_cb (const void *pointer, void *data,
if (!infolist_name || !infolist_name[0])
return NULL;
- if (weechat_strcasecmp (infolist_name, "python_script") == 0)
+ if (weechat_strcmp (infolist_name, "python_script") == 0)
{
return plugin_script_infolist_list_scripts (weechat_python_plugin,
python_scripts,
diff --git a/src/plugins/ruby/weechat-ruby.c b/src/plugins/ruby/weechat-ruby.c
index 3105fcfc7..ab2645c36 100644
--- a/src/plugins/ruby/weechat-ruby.c
+++ b/src/plugins/ruby/weechat-ruby.c
@@ -1147,7 +1147,7 @@ weechat_ruby_infolist_cb (const void *pointer, void *data,
if (!infolist_name || !infolist_name[0])
return NULL;
- if (weechat_strcasecmp (infolist_name, "ruby_script") == 0)
+ if (weechat_strcmp (infolist_name, "ruby_script") == 0)
{
return plugin_script_infolist_list_scripts (weechat_ruby_plugin,
ruby_scripts, obj_pointer,
diff --git a/src/plugins/tcl/weechat-tcl.c b/src/plugins/tcl/weechat-tcl.c
index 637bf0502..57d95539e 100644
--- a/src/plugins/tcl/weechat-tcl.c
+++ b/src/plugins/tcl/weechat-tcl.c
@@ -795,7 +795,7 @@ weechat_tcl_infolist_cb (const void *pointer, void *data,
if (!infolist_name || !infolist_name[0])
return NULL;
- if (weechat_strcasecmp (infolist_name, "tcl_script") == 0)
+ if (weechat_strcmp (infolist_name, "tcl_script") == 0)
{
return plugin_script_infolist_list_scripts (weechat_tcl_plugin,
tcl_scripts, obj_pointer,