mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05: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
@ -53,10 +53,10 @@ int level_get(const char *level)
|
||||
{
|
||||
int n, len, match;
|
||||
|
||||
if (g_strcasecmp(level, "ALL") == 0 || strcmp(level, "*") == 0)
|
||||
if (g_ascii_strcasecmp(level, "ALL") == 0 || strcmp(level, "*") == 0)
|
||||
return MSGLEVEL_ALL;
|
||||
|
||||
if (g_strcasecmp(level, "NEVER") == 0)
|
||||
if (g_ascii_strcasecmp(level, "NEVER") == 0)
|
||||
return MSGLEVEL_NEVER;
|
||||
|
||||
len = strlen(level);
|
||||
|
@ -30,7 +30,7 @@ static gboolean recode_get_charset(const char **charset)
|
||||
*charset = settings_get_str("term_charset");
|
||||
if (**charset)
|
||||
/* we use the same test as in src/fe-text/term.c:123 */
|
||||
return (g_strcasecmp(*charset, "utf-8") == 0);
|
||||
return (g_ascii_strcasecmp(*charset, "utf-8") == 0);
|
||||
|
||||
return g_get_charset(charset);
|
||||
}
|
||||
|
@ -402,7 +402,7 @@ static void cmd_reconnect(const char *data, SERVER_REC *server)
|
||||
return;
|
||||
}
|
||||
|
||||
if (g_strcasecmp(tag, "all") == 0) {
|
||||
if (g_ascii_strcasecmp(tag, "all") == 0) {
|
||||
/* reconnect all servers in reconnect queue */
|
||||
reconnect_all();
|
||||
cmd_params_free(free_arg);
|
||||
|
@ -399,8 +399,8 @@ static SERVER_SETUP_REC *server_setup_read(CONFIG_NODE *node)
|
||||
rec->type = module_get_uniq_id("SERVER SETUP", 0);
|
||||
rec->chat_type = CHAT_PROTOCOL(chatnetrec)->id;
|
||||
rec->chatnet = chatnetrec == NULL ? NULL : g_strdup(chatnetrec->name);
|
||||
rec->family = g_strcasecmp(family, "inet6") == 0 ? AF_INET6 :
|
||||
(g_strcasecmp(family, "inet") == 0 ? AF_INET : 0);
|
||||
rec->family = g_ascii_strcasecmp(family, "inet6") == 0 ? AF_INET6 :
|
||||
(g_ascii_strcasecmp(family, "inet") == 0 ? AF_INET : 0);
|
||||
rec->address = g_strdup(server);
|
||||
rec->password = g_strdup(config_node_get_str(node, "password", NULL));
|
||||
rec->use_ssl = config_node_get_bool(node, "use_ssl", FALSE);
|
||||
|
@ -453,9 +453,9 @@ static int backwards_compatibility(const char *module, CONFIG_NODE *node,
|
||||
|
||||
/* fe-text term_type -> fe-common/core term_charset - for 0.8.10-> */
|
||||
if (strcmp(module, "fe-text") == 0) {
|
||||
if (strcasecmp(node->key, "term_type") == 0 ||
|
||||
if (g_ascii_strcasecmp(node->key, "term_type") == 0 ||
|
||||
/* kludge for cvs-version where term_charset was in fe-text */
|
||||
strcasecmp(node->key, "term_charset") == 0) {
|
||||
g_ascii_strcasecmp(node->key, "term_charset") == 0) {
|
||||
new_module = "fe-common/core";
|
||||
new_key = "term_charset";
|
||||
new_value = !is_valid_charset(node->value) ? NULL :
|
||||
@ -472,8 +472,8 @@ static int backwards_compatibility(const char *module, CONFIG_NODE *node,
|
||||
g_free(new_value);
|
||||
config_changed = TRUE;
|
||||
return new_key != NULL;
|
||||
} else if (strcasecmp(node->key, "actlist_moves") == 0 &&
|
||||
node->value != NULL && strcasecmp(node->value, "yes") == 0) {
|
||||
} else if (g_ascii_strcasecmp(node->key, "actlist_moves") == 0 &&
|
||||
node->value != NULL && g_ascii_strcasecmp(node->value, "yes") == 0) {
|
||||
config_node_set_str(mainconfig, parent, "actlist_sort", "recent");
|
||||
config_node_set_str(mainconfig, parent, node->key, NULL);
|
||||
config_changed = TRUE;
|
||||
|
@ -209,17 +209,17 @@ static int signal_name_to_id(const char *name)
|
||||
/* check only the few most common signals, too much job to check
|
||||
them all. if we sometimes want more, procps-sources/proc/sig.c
|
||||
would be useful for copypasting */
|
||||
if (g_strcasecmp(name, "hup") == 0)
|
||||
if (g_ascii_strcasecmp(name, "hup") == 0)
|
||||
return SIGHUP;
|
||||
if (g_strcasecmp(name, "int") == 0)
|
||||
if (g_ascii_strcasecmp(name, "int") == 0)
|
||||
return SIGINT;
|
||||
if (g_strcasecmp(name, "term") == 0)
|
||||
if (g_ascii_strcasecmp(name, "term") == 0)
|
||||
return SIGTERM;
|
||||
if (g_strcasecmp(name, "kill") == 0)
|
||||
if (g_ascii_strcasecmp(name, "kill") == 0)
|
||||
return SIGKILL;
|
||||
if (g_strcasecmp(name, "usr1") == 0)
|
||||
if (g_ascii_strcasecmp(name, "usr1") == 0)
|
||||
return SIGUSR1;
|
||||
if (g_strcasecmp(name, "usr2") == 0)
|
||||
if (g_ascii_strcasecmp(name, "usr2") == 0)
|
||||
return SIGUSR2;
|
||||
return -1;
|
||||
}
|
||||
|
@ -279,11 +279,11 @@ static void cmd_window_log(const char *data)
|
||||
log = logs_find_item(LOG_ITEM_WINDOW_REFNUM, window, NULL, NULL);
|
||||
|
||||
open_log = close_log = FALSE;
|
||||
if (g_strcasecmp(set, "ON") == 0)
|
||||
if (g_ascii_strcasecmp(set, "ON") == 0)
|
||||
open_log = TRUE;
|
||||
else if (g_strcasecmp(set, "OFF") == 0) {
|
||||
else if (g_ascii_strcasecmp(set, "OFF") == 0) {
|
||||
close_log = TRUE;
|
||||
} else if (g_strcasecmp(set, "TOGGLE") == 0) {
|
||||
} else if (g_ascii_strcasecmp(set, "TOGGLE") == 0) {
|
||||
open_log = log == NULL;
|
||||
close_log = log != NULL;
|
||||
} else {
|
||||
|
@ -66,11 +66,11 @@ static void set_print_pattern(const char *pattern)
|
||||
|
||||
static void set_boolean(const char *key, const char *value)
|
||||
{
|
||||
if (g_strcasecmp(value, "ON") == 0)
|
||||
if (g_ascii_strcasecmp(value, "ON") == 0)
|
||||
settings_set_bool(key, TRUE);
|
||||
else if (g_strcasecmp(value, "OFF") == 0)
|
||||
else if (g_ascii_strcasecmp(value, "OFF") == 0)
|
||||
settings_set_bool(key, FALSE);
|
||||
else if (g_strcasecmp(value, "TOGGLE") == 0)
|
||||
else if (g_ascii_strcasecmp(value, "TOGGLE") == 0)
|
||||
settings_set_bool(key, !settings_get_bool(key));
|
||||
else
|
||||
printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_NOT_TOGGLE);
|
||||
|
@ -462,9 +462,9 @@ static void sig_gui_dialog(const char *type, const char *text)
|
||||
{
|
||||
char *format;
|
||||
|
||||
if (g_strcasecmp(type, "warning") == 0)
|
||||
if (g_ascii_strcasecmp(type, "warning") == 0)
|
||||
format = "%_Warning:%_ %s";
|
||||
else if (g_strcasecmp(type, "error") == 0)
|
||||
else if (g_ascii_strcasecmp(type, "error") == 0)
|
||||
format = "%_Error:%_ %s";
|
||||
else
|
||||
format = "%s";
|
||||
|
@ -1144,7 +1144,7 @@ static void theme_save(THEME_REC *theme, int save_all)
|
||||
if (config != NULL)
|
||||
config_parse(config);
|
||||
else {
|
||||
if (g_strcasecmp(theme->name, "default") == 0) {
|
||||
if (g_ascii_strcasecmp(theme->name, "default") == 0) {
|
||||
config = config_open(NULL, -1);
|
||||
config_parse_data(config, default_theme, "internal");
|
||||
config_change_file_name(config, theme->path, 0660);
|
||||
|
@ -175,8 +175,8 @@ static void cmd_window_new(const char *data, void *server, WI_ITEM_REC *item)
|
||||
|
||||
g_return_if_fail(data != NULL);
|
||||
|
||||
type = (g_strncasecmp(data, "hid", 3) == 0 || g_strcasecmp(data, "tab") == 0) ? 1 :
|
||||
(g_strcasecmp(data, "split") == 0 ? 2 : 0);
|
||||
type = (g_ascii_strncasecmp(data, "hid", 3) == 0 || g_ascii_strcasecmp(data, "tab") == 0) ? 1 :
|
||||
(g_ascii_strcasecmp(data, "split") == 0 ? 2 : 0);
|
||||
signal_emit("gui window create override", 1, GINT_TO_POINTER(type));
|
||||
|
||||
window = window_create(NULL, FALSE);
|
||||
@ -335,7 +335,7 @@ static void cmd_window_goto(const char *data)
|
||||
if (!cmd_get_params(data, &free_arg, 1, &target))
|
||||
return;
|
||||
|
||||
if (g_strcasecmp(target, "active") == 0)
|
||||
if (g_ascii_strcasecmp(target, "active") == 0)
|
||||
window = window_highest_activity(active_win);
|
||||
else {
|
||||
window = window_find_name(target);
|
||||
@ -403,11 +403,11 @@ static void cmd_window_immortal(const char *data)
|
||||
|
||||
if (*data == '\0')
|
||||
set = active_win->immortal;
|
||||
else if (g_strcasecmp(data, "ON") == 0)
|
||||
else if (g_ascii_strcasecmp(data, "ON") == 0)
|
||||
set = TRUE;
|
||||
else if (g_strcasecmp(data, "OFF") == 0)
|
||||
else if (g_ascii_strcasecmp(data, "OFF") == 0)
|
||||
set = FALSE;
|
||||
else if (g_strcasecmp(data, "TOGGLE") == 0)
|
||||
else if (g_ascii_strcasecmp(data, "TOGGLE") == 0)
|
||||
set = !active_win->immortal;
|
||||
else {
|
||||
printformat_window(active_win, MSGLEVEL_CLIENTERROR,
|
||||
|
@ -57,11 +57,11 @@ static void sig_layout_restore_item(WINDOW_REC *window, const char *type,
|
||||
if (name == NULL || tag == NULL)
|
||||
return;
|
||||
|
||||
if (g_strcasecmp(type, "CHANNEL") == 0) {
|
||||
if (g_ascii_strcasecmp(type, "CHANNEL") == 0) {
|
||||
/* bind channel to window */
|
||||
WINDOW_BIND_REC *rec = window_bind_add(window, tag, name);
|
||||
rec->sticky = TRUE;
|
||||
} else if (g_strcasecmp(type, "QUERY") == 0 && chat_type != NULL) {
|
||||
} else if (g_ascii_strcasecmp(type, "QUERY") == 0 && chat_type != NULL) {
|
||||
CHAT_PROTOCOL_REC *protocol;
|
||||
/* create query immediately */
|
||||
signal_add("query created",
|
||||
|
@ -212,7 +212,7 @@ static void dcc_error_close_not_found(const char *type, const char *nick,
|
||||
{
|
||||
g_return_if_fail(type != NULL);
|
||||
g_return_if_fail(nick != NULL);
|
||||
if (g_strcasecmp(type, "CHAT") != 0) return;
|
||||
if (g_ascii_strcasecmp(type, "CHAT") != 0) return;
|
||||
|
||||
printformat(NULL, NULL, MSGLEVEL_DCC,
|
||||
IRCTXT_DCC_CHAT_NOT_FOUND, nick);
|
||||
|
@ -105,7 +105,7 @@ static void dcc_error_close_not_found(const char *type, const char *nick,
|
||||
g_return_if_fail(type != NULL);
|
||||
g_return_if_fail(nick != NULL);
|
||||
g_return_if_fail(fname != NULL);
|
||||
if (g_strcasecmp(type, "GET") != 0) return;
|
||||
if (g_ascii_strcasecmp(type, "GET") != 0) return;
|
||||
|
||||
if (fname == '\0') fname = "(ANY)";
|
||||
printformat(NULL, NULL, MSGLEVEL_DCC,
|
||||
|
@ -106,7 +106,7 @@ static void dcc_error_close_not_found(const char *type, const char *nick,
|
||||
g_return_if_fail(type != NULL);
|
||||
g_return_if_fail(nick != NULL);
|
||||
g_return_if_fail(fname != NULL);
|
||||
if (g_strcasecmp(type, "SEND") != 0) return;
|
||||
if (g_ascii_strcasecmp(type, "SEND") != 0) return;
|
||||
|
||||
if (fname == '\0') fname = "(ANY)";
|
||||
printformat(NULL, NULL, MSGLEVEL_DCC,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
@ -392,9 +392,9 @@ static void read_settings(void)
|
||||
gui_entry_set_utf8(active_entry, term_type == TERM_TYPE_UTF8);
|
||||
|
||||
str = settings_get_str("actlist_sort");
|
||||
if (strcasecmp(str, "recent") == 0)
|
||||
if (g_ascii_strcasecmp(str, "recent") == 0)
|
||||
actlist_sort = 1;
|
||||
else if (strcasecmp(str, "level") == 0)
|
||||
else if (g_ascii_strcasecmp(str, "level") == 0)
|
||||
actlist_sort = 2;
|
||||
else {
|
||||
settings_set_str("actlist_sort", "refnum");
|
||||
|
@ -120,9 +120,9 @@ static void read_settings(void)
|
||||
|
||||
/* set terminal type */
|
||||
str = settings_get_str("term_charset");
|
||||
if (g_strcasecmp(str, "utf-8") == 0)
|
||||
if (g_ascii_strcasecmp(str, "utf-8") == 0)
|
||||
term_type = TERM_TYPE_UTF8;
|
||||
else if (g_strcasecmp(str, "big5") == 0)
|
||||
else if (g_ascii_strcasecmp(str, "big5") == 0)
|
||||
term_type = TERM_TYPE_BIG5;
|
||||
else
|
||||
term_type = TERM_TYPE_8BIT;
|
||||
|
@ -69,12 +69,12 @@ static void cmd_window_scroll(const char *data)
|
||||
GUI_WINDOW_REC *gui;
|
||||
|
||||
gui = WINDOW_GUI(active_win);
|
||||
if (g_strcasecmp(data, "default") == 0) {
|
||||
if (g_ascii_strcasecmp(data, "default") == 0) {
|
||||
gui->use_scroll = FALSE;
|
||||
} else if (g_strcasecmp(data, "on") == 0) {
|
||||
} else if (g_ascii_strcasecmp(data, "on") == 0) {
|
||||
gui->use_scroll = TRUE;
|
||||
gui->scroll = TRUE;
|
||||
} else if (g_strcasecmp(data, "off") == 0) {
|
||||
} else if (g_ascii_strcasecmp(data, "off") == 0) {
|
||||
gui->use_scroll = TRUE;
|
||||
gui->scroll = FALSE;
|
||||
} else if (*data != '\0') {
|
||||
|
@ -71,7 +71,7 @@ static void sig_unknown_command(IRC_SERVER_REC *server, const char *data)
|
||||
g_return_if_fail(data != NULL);
|
||||
|
||||
params = event_get_params(data, 2, NULL, &cmd);
|
||||
if (g_strcasecmp(cmd, "PING") == 0) {
|
||||
if (g_ascii_strcasecmp(cmd, "PING") == 0) {
|
||||
/* some servers have disabled PING command, don't bother
|
||||
trying alternative methods to detect lag with these
|
||||
servers. */
|
||||
|
@ -165,7 +165,7 @@ static void handle_client_cmd(CLIENT_REC *client, char *cmd, char *args,
|
||||
}
|
||||
|
||||
if (strcmp(cmd, "PROXY") == 0) {
|
||||
if (g_strcasecmp(args, "CTCP ON") == 0) {
|
||||
if (g_ascii_strcasecmp(args, "CTCP ON") == 0) {
|
||||
/* client wants all ctcps */
|
||||
client->want_ctcp = 1;
|
||||
for (tmp = proxy_clients; tmp != NULL; tmp = tmp->next) {
|
||||
@ -182,7 +182,7 @@ static void handle_client_cmd(CLIENT_REC *client, char *cmd, char *args,
|
||||
}
|
||||
proxy_outdata(client, ":%s NOTICE %s :You're now receiving CTCPs sent to %s\n",
|
||||
client->proxy_address, client->nick,client->listen->ircnet);
|
||||
} else if (g_strcasecmp(args, "CTCP OFF") == 0) {
|
||||
} else if (g_ascii_strcasecmp(args, "CTCP OFF") == 0) {
|
||||
/* client wants proxy to handle all ctcps */
|
||||
client->want_ctcp = 0;
|
||||
proxy_outdata(client, ":%s NOTICE %s :Proxy is now handling itself CTCPs sent to %s\n",
|
||||
|
@ -119,15 +119,15 @@ void expando_signals_add_hash(const char *key, SV *signals)
|
||||
SV *argsv = HeVAL(he);
|
||||
argstr = SvPV(argsv, PL_na);
|
||||
|
||||
if (strcasecmp(argstr, "none") == 0)
|
||||
if (g_ascii_strcasecmp(argstr, "none") == 0)
|
||||
arg = EXPANDO_ARG_NONE;
|
||||
else if (strcasecmp(argstr, "server") == 0)
|
||||
else if (g_ascii_strcasecmp(argstr, "server") == 0)
|
||||
arg = EXPANDO_ARG_SERVER;
|
||||
else if (strcasecmp(argstr, "window") == 0)
|
||||
else if (g_ascii_strcasecmp(argstr, "window") == 0)
|
||||
arg = EXPANDO_ARG_WINDOW;
|
||||
else if (strcasecmp(argstr, "windowitem") == 0)
|
||||
else if (g_ascii_strcasecmp(argstr, "windowitem") == 0)
|
||||
arg = EXPANDO_ARG_WINDOW_ITEM;
|
||||
else if (strcasecmp(argstr, "never") == 0)
|
||||
else if (g_ascii_strcasecmp(argstr, "never") == 0)
|
||||
arg = EXPANDO_NEVER;
|
||||
else {
|
||||
croak("Unknown signal type: %s", argstr);
|
||||
|
Loading…
Reference in New Issue
Block a user