mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Use g_ascii_str{,n}casecmp for case insensitive comparison with
ascii only strings. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4738 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
496d82ac48
commit
7df46597e1
22 changed files with 63 additions and 63 deletions
|
|
@ -163,16 +163,16 @@ static void statusbar_read(STATUSBAR_GROUP_REC *group, CONFIG_NODE *node)
|
|||
}
|
||||
|
||||
visible_str = config_node_get_str(node, "visible", "");
|
||||
if (g_strcasecmp(visible_str, "active") == 0)
|
||||
if (g_ascii_strcasecmp(visible_str, "active") == 0)
|
||||
bar->visible = STATUSBAR_VISIBLE_ACTIVE;
|
||||
else if (g_strcasecmp(visible_str, "inactive") == 0)
|
||||
else if (g_ascii_strcasecmp(visible_str, "inactive") == 0)
|
||||
bar->visible = STATUSBAR_VISIBLE_INACTIVE;
|
||||
else
|
||||
bar->visible = STATUSBAR_VISIBLE_ALWAYS;
|
||||
|
||||
if (g_strcasecmp(config_node_get_str(node, "type", ""), "window") == 0)
|
||||
if (g_ascii_strcasecmp(config_node_get_str(node, "type", ""), "window") == 0)
|
||||
bar->type = STATUSBAR_TYPE_WINDOW;
|
||||
if (g_strcasecmp(config_node_get_str(node, "placement", ""), "top") == 0)
|
||||
if (g_ascii_strcasecmp(config_node_get_str(node, "placement", ""), "top") == 0)
|
||||
bar->placement = STATUSBAR_TOP;
|
||||
bar->position = config_node_get_int(node, "position", 0);
|
||||
|
||||
|
|
@ -378,9 +378,9 @@ static void cmd_statusbar_reset(const char *data, void *server,
|
|||
static void cmd_statusbar_type(const char *data, void *server,
|
||||
void *item, CONFIG_NODE *node)
|
||||
{
|
||||
if (g_strcasecmp(data, "window") == 0)
|
||||
if (g_ascii_strcasecmp(data, "window") == 0)
|
||||
iconfig_node_set_str(node, "type", "window");
|
||||
else if (g_strcasecmp(data, "root") == 0)
|
||||
else if (g_ascii_strcasecmp(data, "root") == 0)
|
||||
iconfig_node_set_str(node, "type", "root");
|
||||
else {
|
||||
printformat(NULL, NULL, MSGLEVEL_CLIENTERROR,
|
||||
|
|
@ -392,9 +392,9 @@ static void cmd_statusbar_type(const char *data, void *server,
|
|||
static void cmd_statusbar_placement(const char *data, void *server,
|
||||
void *item, CONFIG_NODE *node)
|
||||
{
|
||||
if (g_strcasecmp(data, "top") == 0)
|
||||
if (g_ascii_strcasecmp(data, "top") == 0)
|
||||
iconfig_node_set_str(node, "placement", "top");
|
||||
else if (g_strcasecmp(data, "bottom") == 0)
|
||||
else if (g_ascii_strcasecmp(data, "bottom") == 0)
|
||||
iconfig_node_set_str(node, "placement", "bottom");
|
||||
else {
|
||||
printformat(NULL, NULL, MSGLEVEL_CLIENTERROR,
|
||||
|
|
@ -413,11 +413,11 @@ static void cmd_statusbar_position(const char *data, void *server,
|
|||
static void cmd_statusbar_visible(const char *data, void *server,
|
||||
void *item, CONFIG_NODE *node)
|
||||
{
|
||||
if (g_strcasecmp(data, "always") == 0)
|
||||
if (g_ascii_strcasecmp(data, "always") == 0)
|
||||
iconfig_node_set_str(node, "visible", "always");
|
||||
else if (g_strcasecmp(data, "active") == 0)
|
||||
else if (g_ascii_strcasecmp(data, "active") == 0)
|
||||
iconfig_node_set_str(node, "visible", "active");
|
||||
else if (g_strcasecmp(data, "inactive") == 0)
|
||||
else if (g_ascii_strcasecmp(data, "inactive") == 0)
|
||||
iconfig_node_set_str(node, "visible", "inactive");
|
||||
else {
|
||||
printformat(NULL, NULL, MSGLEVEL_CLIENTERROR,
|
||||
|
|
@ -495,7 +495,7 @@ static void cmd_statusbar_add(const char *data, void *server,
|
|||
value = g_hash_table_lookup(optlist, "alignment");
|
||||
if (value != NULL) {
|
||||
iconfig_node_set_str(node, "alignment",
|
||||
g_strcasecmp(value, "right") == 0 ?
|
||||
g_ascii_strcasecmp(value, "right") == 0 ?
|
||||
"right" : NULL);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue