mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
Merge pull request #235 from dequis/g_strcmp0
Change all strcmp() to g_strcmp0() to handle nulls gracefully
This commit is contained in:
commit
03be2861dc
@ -52,6 +52,10 @@
|
|||||||
#define g_slice_free(type, mem) g_free(mem)
|
#define g_slice_free(type, mem) g_free(mem)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if !GLIB_CHECK_VERSION(2,16,0)
|
||||||
|
#define g_strcmp0(a, b) (!a ? -(a != b) : (!b ? (a != b) : strcmp(a, b)))
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef USE_GC
|
#ifdef USE_GC
|
||||||
# define g_free(x) G_STMT_START { (x) = NULL; } G_STMT_END
|
# define g_free(x) G_STMT_START { (x) = NULL; } G_STMT_END
|
||||||
#endif
|
#endif
|
||||||
|
@ -167,7 +167,7 @@ static GSList *servers_find_chatnet_except(SERVER_REC *server)
|
|||||||
SERVER_REC *rec = tmp->data;
|
SERVER_REC *rec = tmp->data;
|
||||||
|
|
||||||
if (server != rec && rec->connrec->chatnet != NULL &&
|
if (server != rec && rec->connrec->chatnet != NULL &&
|
||||||
strcmp(server->connrec->chatnet,
|
g_strcmp0(server->connrec->chatnet,
|
||||||
rec->connrec->chatnet) == 0) {
|
rec->connrec->chatnet) == 0) {
|
||||||
/* chatnets match */
|
/* chatnets match */
|
||||||
list = g_slist_append(list, rec);
|
list = g_slist_append(list, rec);
|
||||||
|
@ -58,7 +58,7 @@ static SERVER_CONNECT_REC *get_server_connect(const char *data, int *plus_addr,
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(password, "-") == 0)
|
if (g_strcmp0(password, "-") == 0)
|
||||||
*password = '\0';
|
*password = '\0';
|
||||||
|
|
||||||
/* check if -<chatnet> option is used to specify chat protocol */
|
/* check if -<chatnet> option is used to specify chat protocol */
|
||||||
@ -287,7 +287,7 @@ static void cmd_disconnect(const char *data, SERVER_REC *server)
|
|||||||
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_GETREST, &tag, &msg))
|
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_GETREST, &tag, &msg))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (*tag != '\0' && strcmp(tag, "*") != 0) {
|
if (*tag != '\0' && g_strcmp0(tag, "*") != 0) {
|
||||||
server = server_find_tag(tag);
|
server = server_find_tag(tag);
|
||||||
if (server == NULL)
|
if (server == NULL)
|
||||||
server = server_find_lookup_tag(tag);
|
server = server_find_lookup_tag(tag);
|
||||||
@ -347,7 +347,7 @@ static void cmd_msg(const char *data, SERVER_REC *server, WI_ITEM_REC *item)
|
|||||||
|
|
||||||
origtarget = target;
|
origtarget = target;
|
||||||
free_ret = FALSE;
|
free_ret = FALSE;
|
||||||
if (strcmp(target, ",") == 0 || strcmp(target, ".") == 0) {
|
if (g_strcmp0(target, ",") == 0 || g_strcmp0(target, ".") == 0) {
|
||||||
target = parse_special(&target, server, item,
|
target = parse_special(&target, server, item,
|
||||||
NULL, &free_ret, NULL, 0);
|
NULL, &free_ret, NULL, 0);
|
||||||
if (target != NULL && *target == '\0') {
|
if (target != NULL && *target == '\0') {
|
||||||
@ -359,7 +359,7 @@ static void cmd_msg(const char *data, SERVER_REC *server, WI_ITEM_REC *item)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (target != NULL) {
|
if (target != NULL) {
|
||||||
if (strcmp(target, "*") == 0) {
|
if (g_strcmp0(target, "*") == 0) {
|
||||||
/* send to active channel/query */
|
/* send to active channel/query */
|
||||||
if (item == NULL)
|
if (item == NULL)
|
||||||
cmd_param_error(CMDERR_NOT_JOINED);
|
cmd_param_error(CMDERR_NOT_JOINED);
|
||||||
|
@ -674,7 +674,7 @@ get_optional_channel(WI_ITEM_REC *active_item, char **data, int require_name)
|
|||||||
origtmp = tmp = g_strdup(*data);
|
origtmp = tmp = g_strdup(*data);
|
||||||
channel = cmd_get_param(&tmp);
|
channel = cmd_get_param(&tmp);
|
||||||
|
|
||||||
if (strcmp(channel, "*") == 0 && !require_name) {
|
if (g_strcmp0(channel, "*") == 0 && !require_name) {
|
||||||
/* "*" means active channel */
|
/* "*" means active channel */
|
||||||
cmd_get_param(data);
|
cmd_get_param(data);
|
||||||
ret = window_item_get_target(active_item);
|
ret = window_item_get_target(active_item);
|
||||||
|
@ -201,10 +201,10 @@ IGNORE_REC *ignore_find_noact(const char *servertag, const char *mask,
|
|||||||
char **chan;
|
char **chan;
|
||||||
int ignore_servertag;
|
int ignore_servertag;
|
||||||
|
|
||||||
if (mask != NULL && (*mask == '\0' || strcmp(mask, "*") == 0))
|
if (mask != NULL && (*mask == '\0' || g_strcmp0(mask, "*") == 0))
|
||||||
mask = NULL;
|
mask = NULL;
|
||||||
|
|
||||||
ignore_servertag = servertag != NULL && strcmp(servertag, "*") == 0;
|
ignore_servertag = servertag != NULL && g_strcmp0(servertag, "*") == 0;
|
||||||
for (tmp = ignores; tmp != NULL; tmp = tmp->next) {
|
for (tmp = ignores; tmp != NULL; tmp = tmp->next) {
|
||||||
IGNORE_REC *rec = tmp->data;
|
IGNORE_REC *rec = tmp->data;
|
||||||
|
|
||||||
@ -232,7 +232,7 @@ IGNORE_REC *ignore_find_noact(const char *servertag, const char *mask,
|
|||||||
if ((channels == NULL && rec->channels == NULL))
|
if ((channels == NULL && rec->channels == NULL))
|
||||||
return rec; /* no channels - ok */
|
return rec; /* no channels - ok */
|
||||||
|
|
||||||
if (channels != NULL && strcmp(*channels, "*") == 0)
|
if (channels != NULL && g_strcmp0(*channels, "*") == 0)
|
||||||
return rec; /* ignore channels */
|
return rec; /* ignore channels */
|
||||||
|
|
||||||
if (channels == NULL || rec->channels == NULL)
|
if (channels == NULL || rec->channels == NULL)
|
||||||
|
@ -54,7 +54,7 @@ int level_get(const char *level)
|
|||||||
{
|
{
|
||||||
int n, len, match;
|
int n, len, match;
|
||||||
|
|
||||||
if (g_ascii_strcasecmp(level, "ALL") == 0 || strcmp(level, "*") == 0)
|
if (g_ascii_strcasecmp(level, "ALL") == 0 || g_strcmp0(level, "*") == 0)
|
||||||
return MSGLEVEL_ALL;
|
return MSGLEVEL_ALL;
|
||||||
|
|
||||||
if (g_ascii_strcasecmp(level, "NEVER") == 0)
|
if (g_ascii_strcasecmp(level, "NEVER") == 0)
|
||||||
@ -177,7 +177,7 @@ int combine_level(int dest, const char *src)
|
|||||||
itemname = *item + (**item == '+' || **item == '-' ? 1 : 0);
|
itemname = *item + (**item == '+' || **item == '-' ? 1 : 0);
|
||||||
itemlevel = level_get(itemname);
|
itemlevel = level_get(itemname);
|
||||||
|
|
||||||
if (strcmp(itemname, "NONE") == 0)
|
if (g_strcmp0(itemname, "NONE") == 0)
|
||||||
dest = 0;
|
dest = 0;
|
||||||
else if (**item == '-')
|
else if (**item == '-')
|
||||||
dest &= ~(itemlevel);
|
dest &= ~(itemlevel);
|
||||||
|
@ -110,7 +110,7 @@ int log_start_logging(LOG_REC *log)
|
|||||||
log->real_fname = log_filename(log);
|
log->real_fname = log_filename(log);
|
||||||
|
|
||||||
if (log->real_fname != NULL &&
|
if (log->real_fname != NULL &&
|
||||||
strcmp(log->real_fname, log->fname) != 0) {
|
g_strcmp0(log->real_fname, log->fname) != 0) {
|
||||||
/* path may contain variables (%time, $vars),
|
/* path may contain variables (%time, $vars),
|
||||||
make sure the directory is created */
|
make sure the directory is created */
|
||||||
dir = g_path_get_dirname(log->real_fname);
|
dir = g_path_get_dirname(log->real_fname);
|
||||||
@ -181,7 +181,7 @@ static void log_rotate_check(LOG_REC *log)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
new_fname = log_filename(log);
|
new_fname = log_filename(log);
|
||||||
if (strcmp(new_fname, log->real_fname) != 0) {
|
if (g_strcmp0(new_fname, log->real_fname) != 0) {
|
||||||
/* rotate log */
|
/* rotate log */
|
||||||
log_stop_logging(log);
|
log_stop_logging(log);
|
||||||
signal_emit("log rotated", 1, log);
|
signal_emit("log rotated", 1, log);
|
||||||
@ -245,7 +245,7 @@ static int itemcmp(const char *patt, const char *item)
|
|||||||
{
|
{
|
||||||
/* returns 0 on match, nonzero otherwise */
|
/* returns 0 on match, nonzero otherwise */
|
||||||
|
|
||||||
if (!strcmp(patt, "*"))
|
if (!g_strcmp0(patt, "*"))
|
||||||
return 0;
|
return 0;
|
||||||
return item ? g_ascii_strcasecmp(patt, item) : 1;
|
return item ? g_ascii_strcasecmp(patt, item) : 1;
|
||||||
}
|
}
|
||||||
@ -320,7 +320,7 @@ LOG_REC *log_find(const char *fname)
|
|||||||
for (tmp = logs; tmp != NULL; tmp = tmp->next) {
|
for (tmp = logs; tmp != NULL; tmp = tmp->next) {
|
||||||
LOG_REC *rec = tmp->data;
|
LOG_REC *rec = tmp->data;
|
||||||
|
|
||||||
if (strcmp(rec->fname, fname) == 0)
|
if (g_strcmp0(rec->fname, fname) == 0)
|
||||||
return rec;
|
return rec;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -184,7 +184,7 @@ int strarray_find(char **array, const char *item)
|
|||||||
GSList *gslist_find_string(GSList *list, const char *key)
|
GSList *gslist_find_string(GSList *list, const char *key)
|
||||||
{
|
{
|
||||||
for (; list != NULL; list = list->next)
|
for (; list != NULL; list = list->next)
|
||||||
if (strcmp(list->data, key) == 0) return list;
|
if (g_strcmp0(list->data, key) == 0) return list;
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@ -269,7 +269,7 @@ GSList *hashtable_get_keys(GHashTable *hash)
|
|||||||
GList *glist_find_string(GList *list, const char *key)
|
GList *glist_find_string(GList *list, const char *key)
|
||||||
{
|
{
|
||||||
for (; list != NULL; list = list->next)
|
for (; list != NULL; list = list->next)
|
||||||
if (strcmp(list->data, key) == 0) return list;
|
if (g_strcmp0(list->data, key) == 0) return list;
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -78,7 +78,7 @@ static char *module_get_root(const char *name, char **prefixes)
|
|||||||
|
|
||||||
/* skip the _core part */
|
/* skip the _core part */
|
||||||
len = strlen(name);
|
len = strlen(name);
|
||||||
if (len > 5 && strcmp(name+len-5, "_core") == 0)
|
if (len > 5 && g_strcmp0(name+len-5, "_core") == 0)
|
||||||
return g_strndup(name, len-5);
|
return g_strndup(name, len-5);
|
||||||
|
|
||||||
return g_strdup(name);
|
return g_strdup(name);
|
||||||
@ -94,11 +94,11 @@ static char *module_get_sub(const char *name, const char *root)
|
|||||||
g_return_val_if_fail(namelen >= rootlen, g_strdup(name));
|
g_return_val_if_fail(namelen >= rootlen, g_strdup(name));
|
||||||
|
|
||||||
if (strncmp(name, root, rootlen) == 0 &&
|
if (strncmp(name, root, rootlen) == 0 &&
|
||||||
strcmp(name+rootlen, "_core") == 0)
|
g_strcmp0(name+rootlen, "_core") == 0)
|
||||||
return g_strdup("core");
|
return g_strdup("core");
|
||||||
|
|
||||||
if (namelen > rootlen && name[namelen-rootlen-1] == '_' &&
|
if (namelen > rootlen && name[namelen-rootlen-1] == '_' &&
|
||||||
strcmp(name+namelen-rootlen, root) == 0)
|
g_strcmp0(name+namelen-rootlen, root) == 0)
|
||||||
return g_strndup(name, namelen-rootlen-1);
|
return g_strndup(name, namelen-rootlen-1);
|
||||||
|
|
||||||
return g_strdup(name);
|
return g_strdup(name);
|
||||||
@ -140,10 +140,10 @@ static GModule *module_open(const char *name, int *found)
|
|||||||
static char *module_get_func(const char *rootmodule, const char *submodule,
|
static char *module_get_func(const char *rootmodule, const char *submodule,
|
||||||
const char *function)
|
const char *function)
|
||||||
{
|
{
|
||||||
if (strcmp(submodule, "core") == 0)
|
if (g_strcmp0(submodule, "core") == 0)
|
||||||
return g_strconcat(rootmodule, "_core_", function, NULL);
|
return g_strconcat(rootmodule, "_core_", function, NULL);
|
||||||
|
|
||||||
if (strcmp(rootmodule, submodule) == 0)
|
if (g_strcmp0(rootmodule, submodule) == 0)
|
||||||
return g_strconcat(rootmodule, "_", function, NULL);
|
return g_strconcat(rootmodule, "_", function, NULL);
|
||||||
|
|
||||||
return g_strconcat(submodule, "_", rootmodule, "_", function, NULL);
|
return g_strconcat(submodule, "_", rootmodule, "_", function, NULL);
|
||||||
@ -200,7 +200,7 @@ static int module_load_name(const char *path, const char *rootmodule,
|
|||||||
|
|
||||||
module = module_find(rootmodule);
|
module = module_find(rootmodule);
|
||||||
rec = module == NULL ? NULL :
|
rec = module == NULL ? NULL :
|
||||||
strcmp(rootmodule, submodule) == 0 ?
|
g_strcmp0(rootmodule, submodule) == 0 ?
|
||||||
module_file_find(module, "core") :
|
module_file_find(module, "core") :
|
||||||
module_file_find(module, submodule);
|
module_file_find(module, submodule);
|
||||||
if (rec == NULL) {
|
if (rec == NULL) {
|
||||||
@ -277,7 +277,7 @@ static int module_load_full(const char *path, const char *rootmodule,
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
module = module_find(rootmodule);
|
module = module_find(rootmodule);
|
||||||
if (module != NULL && (strcmp(submodule, rootmodule) == 0 ||
|
if (module != NULL && (g_strcmp0(submodule, rootmodule) == 0 ||
|
||||||
module_file_find(module, submodule) != NULL)) {
|
module_file_find(module, submodule) != NULL)) {
|
||||||
/* module is already loaded */
|
/* module is already loaded */
|
||||||
module_error(MODULE_ERROR_ALREADY_LOADED, NULL,
|
module_error(MODULE_ERROR_ALREADY_LOADED, NULL,
|
||||||
@ -286,7 +286,7 @@ static int module_load_full(const char *path, const char *rootmodule,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* check if the given module exists.. */
|
/* check if the given module exists.. */
|
||||||
try_prefixes = strcmp(rootmodule, submodule) == 0;
|
try_prefixes = g_strcmp0(rootmodule, submodule) == 0;
|
||||||
status = module_load_name(path, rootmodule, submodule, try_prefixes);
|
status = module_load_name(path, rootmodule, submodule, try_prefixes);
|
||||||
if (status == -1 && try_prefixes) {
|
if (status == -1 && try_prefixes) {
|
||||||
/* nope, try loading the module_core,
|
/* nope, try loading the module_core,
|
||||||
@ -340,7 +340,7 @@ int module_load_sub(const char *path, const char *submodule, char **prefixes)
|
|||||||
g_free(name);
|
g_free(name);
|
||||||
|
|
||||||
full_path = g_string_new(exppath);
|
full_path = g_string_new(exppath);
|
||||||
if (strcmp(submodule, "core") == 0)
|
if (g_strcmp0(submodule, "core") == 0)
|
||||||
g_string_insert(full_path, end, "_core");
|
g_string_insert(full_path, end, "_core");
|
||||||
else {
|
else {
|
||||||
g_string_insert_c(full_path, start, '_');
|
g_string_insert_c(full_path, start, '_');
|
||||||
|
@ -44,7 +44,7 @@ void *module_check_cast_module(void *object, int type_pos,
|
|||||||
|
|
||||||
str = module_find_id_str(module,
|
str = module_find_id_str(module,
|
||||||
G_STRUCT_MEMBER(int, object, type_pos));
|
G_STRUCT_MEMBER(int, object, type_pos));
|
||||||
return str == NULL || strcmp(str, id) != 0 ? NULL : object;
|
return str == NULL || g_strcmp0(str, id) != 0 ? NULL : object;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* return unique number across all modules for `id' */
|
/* return unique number across all modules for `id' */
|
||||||
@ -251,7 +251,7 @@ MODULE_FILE_REC *module_file_find(MODULE_REC *module, const char *name)
|
|||||||
for (tmp = module->files; tmp != NULL; tmp = tmp->next) {
|
for (tmp = module->files; tmp != NULL; tmp = tmp->next) {
|
||||||
MODULE_FILE_REC *rec = tmp->data;
|
MODULE_FILE_REC *rec = tmp->data;
|
||||||
|
|
||||||
if (strcmp(rec->name, name) == 0)
|
if (g_strcmp0(rec->name, name) == 0)
|
||||||
return rec;
|
return rec;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -478,7 +478,7 @@ static NICK_REC *nick_nfind(CHANNEL_REC *channel, const char *nick, int len)
|
|||||||
if (rec != NULL) {
|
if (rec != NULL) {
|
||||||
/* if there's multiple, get the one with identical case */
|
/* if there's multiple, get the one with identical case */
|
||||||
while (rec->next != NULL) {
|
while (rec->next != NULL) {
|
||||||
if (strcmp(rec->nick, tmpnick) == 0)
|
if (g_strcmp0(rec->nick, tmpnick) == 0)
|
||||||
break;
|
break;
|
||||||
rec = rec->next;
|
rec = rec->next;
|
||||||
}
|
}
|
||||||
|
@ -385,7 +385,7 @@ static void cmd_reconnect(const char *data, SERVER_REC *server)
|
|||||||
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_GETREST, &tag, &msg))
|
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_GETREST, &tag, &msg))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (*tag != '\0' && strcmp(tag, "*") != 0)
|
if (*tag != '\0' && g_strcmp0(tag, "*") != 0)
|
||||||
server = server_find_tag(tag);
|
server = server_find_tag(tag);
|
||||||
|
|
||||||
if (server != NULL) {
|
if (server != NULL) {
|
||||||
|
@ -531,7 +531,7 @@ static void read_servers(void)
|
|||||||
static void read_settings(void)
|
static void read_settings(void)
|
||||||
{
|
{
|
||||||
if (old_source_host == NULL ||
|
if (old_source_host == NULL ||
|
||||||
strcmp(old_source_host, settings_get_str("hostname")) != 0) {
|
g_strcmp0(old_source_host, settings_get_str("hostname")) != 0) {
|
||||||
g_free_not_null(old_source_host);
|
g_free_not_null(old_source_host);
|
||||||
old_source_host = g_strdup(settings_get_str("hostname"));
|
old_source_host = g_strdup(settings_get_str("hostname"));
|
||||||
|
|
||||||
|
@ -295,7 +295,7 @@ void settings_remove(const char *key)
|
|||||||
static int settings_remove_hash(const char *key, SETTINGS_REC *rec,
|
static int settings_remove_hash(const char *key, SETTINGS_REC *rec,
|
||||||
const char *module)
|
const char *module)
|
||||||
{
|
{
|
||||||
if (strcmp(rec->module, module) == 0) {
|
if (g_strcmp0(rec->module, module) == 0) {
|
||||||
settings_unref(rec, FALSE);
|
settings_unref(rec, FALSE);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
@ -428,7 +428,7 @@ static void settings_clean_invalid_module(const char *module)
|
|||||||
next = config_node_next(tmp);
|
next = config_node_next(tmp);
|
||||||
|
|
||||||
set = g_hash_table_lookup(settings, subnode->key);
|
set = g_hash_table_lookup(settings, subnode->key);
|
||||||
if (set == NULL || strcmp(set->module, module) != 0)
|
if (set == NULL || g_strcmp0(set->module, module) != 0)
|
||||||
iconfig_node_remove(node, subnode);
|
iconfig_node_remove(node, subnode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -458,7 +458,7 @@ static int backwards_compatibility(const char *module, CONFIG_NODE *node,
|
|||||||
new_value = NULL; new_key = NULL; new_module = NULL;
|
new_value = NULL; new_key = NULL; new_module = NULL;
|
||||||
|
|
||||||
/* fe-text term_type -> fe-common/core term_charset - for 0.8.10-> */
|
/* fe-text term_type -> fe-common/core term_charset - for 0.8.10-> */
|
||||||
if (strcmp(module, "fe-text") == 0) {
|
if (g_strcmp0(module, "fe-text") == 0) {
|
||||||
if (g_ascii_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 */
|
/* kludge for cvs-version where term_charset was in fe-text */
|
||||||
g_ascii_strcasecmp(node->key, "term_charset") == 0) {
|
g_ascii_strcasecmp(node->key, "term_charset") == 0) {
|
||||||
@ -520,7 +520,7 @@ void settings_check_module(const char *module)
|
|||||||
if (backwards_compatibility(module, node, parent))
|
if (backwards_compatibility(module, node, parent))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (set == NULL || strcmp(set->module, module) != 0) {
|
if (set == NULL || g_strcmp0(set->module, module) != 0) {
|
||||||
g_string_append_printf(errors, " %s", node->key);
|
g_string_append_printf(errors, " %s", node->key);
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
@ -548,9 +548,9 @@ void settings_check_module(const char *module)
|
|||||||
|
|
||||||
static int settings_compare(SETTINGS_REC *v1, SETTINGS_REC *v2)
|
static int settings_compare(SETTINGS_REC *v1, SETTINGS_REC *v2)
|
||||||
{
|
{
|
||||||
int cmp = strcmp(v1->section, v2->section);
|
int cmp = g_strcmp0(v1->section, v2->section);
|
||||||
if (!cmp)
|
if (!cmp)
|
||||||
cmp = strcmp(v1->key, v2->key);
|
cmp = g_strcmp0(v1->key, v2->key);
|
||||||
return cmp;
|
return cmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ void command_history_add(HISTORY_REC *history, const char *text)
|
|||||||
g_return_if_fail(text != NULL);
|
g_return_if_fail(text != NULL);
|
||||||
|
|
||||||
link = g_list_last(history->list);
|
link = g_list_last(history->list);
|
||||||
if (link != NULL && strcmp(link->data, text) == 0)
|
if (link != NULL && g_strcmp0(link->data, text) == 0)
|
||||||
return; /* same as previous entry */
|
return; /* same as previous entry */
|
||||||
|
|
||||||
if (settings_get_int("max_command_history") < 1 ||
|
if (settings_get_int("max_command_history") < 1 ||
|
||||||
@ -121,7 +121,7 @@ const char *command_history_prev(WINDOW_REC *window, const char *text)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (*text != '\0' &&
|
if (*text != '\0' &&
|
||||||
(pos == NULL || strcmp(pos->data, text) != 0)) {
|
(pos == NULL || g_strcmp0(pos->data, text) != 0)) {
|
||||||
/* save the old entry to history */
|
/* save the old entry to history */
|
||||||
command_history_add(history, text);
|
command_history_add(history, text);
|
||||||
}
|
}
|
||||||
@ -145,7 +145,7 @@ const char *command_history_next(WINDOW_REC *window, const char *text)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (*text != '\0' &&
|
if (*text != '\0' &&
|
||||||
(pos == NULL || strcmp(pos->data, text) != 0)) {
|
(pos == NULL || g_strcmp0(pos->data, text) != 0)) {
|
||||||
/* save the old entry to history */
|
/* save the old entry to history */
|
||||||
command_history_add(history, text);
|
command_history_add(history, text);
|
||||||
}
|
}
|
||||||
|
@ -141,7 +141,7 @@ char *word_complete(WINDOW_REC *window, const char *line, int *pos, int erase, i
|
|||||||
g_return_val_if_fail(pos != NULL, NULL);
|
g_return_val_if_fail(pos != NULL, NULL);
|
||||||
|
|
||||||
continue_complete = complist != NULL && *pos == last_line_pos &&
|
continue_complete = complist != NULL && *pos == last_line_pos &&
|
||||||
strcmp(line, last_line) == 0;
|
g_strcmp0(line, last_line) == 0;
|
||||||
|
|
||||||
if (erase && !continue_complete)
|
if (erase && !continue_complete)
|
||||||
return NULL;
|
return NULL;
|
||||||
@ -681,7 +681,7 @@ static void sig_complete_set(GList **list, WINDOW_REC *window,
|
|||||||
g_return_if_fail(line != NULL);
|
g_return_if_fail(line != NULL);
|
||||||
|
|
||||||
if (*line == '\0' ||
|
if (*line == '\0' ||
|
||||||
!strcmp("-clear", line) || !strcmp("-default", line))
|
!g_strcmp0("-clear", line) || !g_strcmp0("-default", line))
|
||||||
*list = completion_get_settings(word, -1);
|
*list = completion_get_settings(word, -1);
|
||||||
else if (*line != '\0' && *word == '\0') {
|
else if (*line != '\0' && *word == '\0') {
|
||||||
SETTINGS_REC *rec = settings_get_record(line);
|
SETTINGS_REC *rec = settings_get_record(line);
|
||||||
|
@ -287,7 +287,7 @@ static void cmd_channel_add(const char *data)
|
|||||||
if (g_hash_table_lookup(optlist, "noauto")) rec->autojoin = FALSE;
|
if (g_hash_table_lookup(optlist, "noauto")) rec->autojoin = FALSE;
|
||||||
if (botarg != NULL && *botarg != '\0') rec->botmasks = g_strdup(botarg);
|
if (botarg != NULL && *botarg != '\0') rec->botmasks = g_strdup(botarg);
|
||||||
if (botcmdarg != NULL && *botcmdarg != '\0') rec->autosendcmd = g_strdup(botcmdarg);
|
if (botcmdarg != NULL && *botcmdarg != '\0') rec->autosendcmd = g_strdup(botcmdarg);
|
||||||
if (*password != '\0' && strcmp(password, "-") != 0) rec->password = g_strdup(password);
|
if (*password != '\0' && g_strcmp0(password, "-") != 0) rec->password = g_strdup(password);
|
||||||
|
|
||||||
signal_emit("channel add fill", 2, rec, optlist);
|
signal_emit("channel add fill", 2, rec, optlist);
|
||||||
|
|
||||||
@ -523,7 +523,7 @@ static void cmd_names(const char *data, SERVER_REC *server, WI_ITEM_REC *item)
|
|||||||
"names", &optlist, &channel))
|
"names", &optlist, &channel))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (strcmp(channel, "*") == 0 || *channel == '\0') {
|
if (g_strcmp0(channel, "*") == 0 || *channel == '\0') {
|
||||||
if (!IS_CHANNEL(item))
|
if (!IS_CHANNEL(item))
|
||||||
cmd_param_error(CMDERR_NOT_JOINED);
|
cmd_param_error(CMDERR_NOT_JOINED);
|
||||||
|
|
||||||
@ -561,7 +561,7 @@ static void cmd_names(const char *data, SERVER_REC *server, WI_ITEM_REC *item)
|
|||||||
if (unknowns->len > 1)
|
if (unknowns->len > 1)
|
||||||
g_string_truncate(unknowns, unknowns->len-1);
|
g_string_truncate(unknowns, unknowns->len-1);
|
||||||
|
|
||||||
if (unknowns->len > 0 && strcmp(channel, unknowns->str) != 0)
|
if (unknowns->len > 0 && g_strcmp0(channel, unknowns->str) != 0)
|
||||||
signal_emit("command names", 3, unknowns->str, server, item);
|
signal_emit("command names", 3, unknowns->str, server, item);
|
||||||
g_string_free(unknowns, TRUE);
|
g_string_free(unknowns, TRUE);
|
||||||
|
|
||||||
|
@ -161,7 +161,7 @@ static PROCESS_REC *process_find(const char *name, int verbose)
|
|||||||
for (tmp = processes; tmp != NULL; tmp = tmp->next) {
|
for (tmp = processes; tmp != NULL; tmp = tmp->next) {
|
||||||
PROCESS_REC *rec = tmp->data;
|
PROCESS_REC *rec = tmp->data;
|
||||||
|
|
||||||
if (rec->name != NULL && strcmp(rec->name, name) == 0)
|
if (rec->name != NULL && g_strcmp0(rec->name, name) == 0)
|
||||||
return rec;
|
return rec;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,12 +37,12 @@ static int commands_equal(COMMAND_REC *rec, COMMAND_REC *rec2)
|
|||||||
if (rec2->category == NULL && rec->category != NULL)
|
if (rec2->category == NULL && rec->category != NULL)
|
||||||
return 1;
|
return 1;
|
||||||
if (rec->category != NULL && rec2->category != NULL) {
|
if (rec->category != NULL && rec2->category != NULL) {
|
||||||
i = strcmp(rec->category, rec2->category);
|
i = g_strcmp0(rec->category, rec2->category);
|
||||||
if (i != 0)
|
if (i != 0)
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
return strcmp(rec->cmd, rec2->cmd);
|
return g_strcmp0(rec->cmd, rec2->cmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int get_cmd_length(void *data)
|
static int get_cmd_length(void *data)
|
||||||
@ -176,7 +176,7 @@ static void show_help(const char *data)
|
|||||||
|
|
||||||
if (last != NULL && rec->category != NULL &&
|
if (last != NULL && rec->category != NULL &&
|
||||||
(last->category == NULL ||
|
(last->category == NULL ||
|
||||||
strcmp(rec->category, last->category) != 0)) {
|
g_strcmp0(rec->category, last->category) != 0)) {
|
||||||
/* category changed */
|
/* category changed */
|
||||||
if (items > 0) {
|
if (items > 0) {
|
||||||
if (!header) {
|
if (!header) {
|
||||||
|
@ -165,7 +165,7 @@ static void cmd_ignore(const char *data)
|
|||||||
rec = g_new0(IGNORE_REC, 1);
|
rec = g_new0(IGNORE_REC, 1);
|
||||||
|
|
||||||
rec->mask = mask == NULL || *mask == '\0' ||
|
rec->mask = mask == NULL || *mask == '\0' ||
|
||||||
strcmp(mask, "*") == 0 ? NULL : g_strdup(mask);
|
g_strcmp0(mask, "*") == 0 ? NULL : g_strdup(mask);
|
||||||
rec->channels = channels;
|
rec->channels = channels;
|
||||||
} else {
|
} else {
|
||||||
g_free_and_null(rec->pattern);
|
g_free_and_null(rec->pattern);
|
||||||
|
@ -485,7 +485,7 @@ static void autolog_open_check(TEXT_DEST_REC *dest)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (target != NULL)
|
if (target != NULL)
|
||||||
autolog_open(server, server_tag, strcmp(target, "*") ? target : deftarget);
|
autolog_open(server, server_tag, g_strcmp0(target, "*") ? target : deftarget);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void log_single_line(WINDOW_REC *window, const char *server_tag,
|
static void log_single_line(WINDOW_REC *window, const char *server_tag,
|
||||||
@ -629,7 +629,7 @@ static void sig_log_create_failed(LOG_REC *log)
|
|||||||
static void sig_log_new(LOG_REC *log)
|
static void sig_log_new(LOG_REC *log)
|
||||||
{
|
{
|
||||||
if (!settings_get_bool("awaylog_colors") &&
|
if (!settings_get_bool("awaylog_colors") &&
|
||||||
strcmp(log->fname, settings_get_str("awaylog_file")) == 0)
|
g_strcmp0(log->fname, settings_get_str("awaylog_file")) == 0)
|
||||||
log->colorizer = log_colorizer_strip;
|
log->colorizer = log_colorizer_strip;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -249,7 +249,7 @@ static void sig_message_private(SERVER_REC *server, const char *msg,
|
|||||||
int level = MSGLEVEL_MSGS;
|
int level = MSGLEVEL_MSGS;
|
||||||
|
|
||||||
/* own message returned by bouncer? */
|
/* own message returned by bouncer? */
|
||||||
int own = (!strcmp(nick, server->nick));
|
int own = (!g_strcmp0(nick, server->nick));
|
||||||
|
|
||||||
query = query_find(server, own ? target : nick);
|
query = query_find(server, own ? target : nick);
|
||||||
|
|
||||||
@ -323,8 +323,8 @@ static void sig_message_own_private(SERVER_REC *server, const char *msg,
|
|||||||
/* this should only happen if some special target failed and
|
/* this should only happen if some special target failed and
|
||||||
we should display some error message. currently the special
|
we should display some error message. currently the special
|
||||||
targets are only ',' and '.'. */
|
targets are only ',' and '.'. */
|
||||||
g_return_if_fail(strcmp(origtarget, ",") == 0 ||
|
g_return_if_fail(g_strcmp0(origtarget, ",") == 0 ||
|
||||||
strcmp(origtarget, ".") == 0);
|
g_strcmp0(origtarget, ".") == 0);
|
||||||
|
|
||||||
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
|
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
|
||||||
*origtarget == ',' ? TXT_NO_MSGS_GOT :
|
*origtarget == ',' ? TXT_NO_MSGS_GOT :
|
||||||
@ -569,7 +569,7 @@ static int printnick_exists(NICK_REC *first, NICK_REC *ignore,
|
|||||||
while (first != NULL) {
|
while (first != NULL) {
|
||||||
if (first != ignore) {
|
if (first != ignore) {
|
||||||
printnick = g_hash_table_lookup(printnicks, first);
|
printnick = g_hash_table_lookup(printnicks, first);
|
||||||
if (printnick != NULL && strcmp(printnick, nick) == 0)
|
if (printnick != NULL && g_strcmp0(printnick, nick) == 0)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -331,7 +331,7 @@ static void sig_message_private(SERVER_REC *server, const char *msg,
|
|||||||
QUERY_REC *query;
|
QUERY_REC *query;
|
||||||
|
|
||||||
/* own message returned by bouncer? */
|
/* own message returned by bouncer? */
|
||||||
int own = (!strcmp(nick, server->nick));
|
int own = (!g_strcmp0(nick, server->nick));
|
||||||
|
|
||||||
/* create query window if needed */
|
/* create query window if needed */
|
||||||
query = privmsg_get_query(server, own ? target : nick, FALSE, MSGLEVEL_MSGS);
|
query = privmsg_get_query(server, own ? target : nick, FALSE, MSGLEVEL_MSGS);
|
||||||
|
@ -45,7 +45,7 @@ static const char *fe_recode_get_target (WI_ITEM_REC *witem)
|
|||||||
|
|
||||||
static int fe_recode_compare_func (CONFIG_NODE *node1, CONFIG_NODE *node2)
|
static int fe_recode_compare_func (CONFIG_NODE *node1, CONFIG_NODE *node2)
|
||||||
{
|
{
|
||||||
return strcmp(node1->key, node2->key);
|
return g_strcmp0(node1->key, node2->key);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* SYNTAX: RECODE */
|
/* SYNTAX: RECODE */
|
||||||
|
@ -189,7 +189,7 @@ static void cmd_server_add(const char *data)
|
|||||||
if (g_hash_table_lookup(optlist, "proxy")) rec->no_proxy = FALSE;
|
if (g_hash_table_lookup(optlist, "proxy")) rec->no_proxy = FALSE;
|
||||||
if (g_hash_table_lookup(optlist, "noproxy")) rec->no_proxy = TRUE;
|
if (g_hash_table_lookup(optlist, "noproxy")) rec->no_proxy = TRUE;
|
||||||
|
|
||||||
if (*password != '\0' && strcmp(password, "-") != 0) rec->password = g_strdup(password);
|
if (*password != '\0' && g_strcmp0(password, "-") != 0) rec->password = g_strdup(password);
|
||||||
value = g_hash_table_lookup(optlist, "host");
|
value = g_hash_table_lookup(optlist, "host");
|
||||||
if (value != NULL && *value != '\0') {
|
if (value != NULL && *value != '\0') {
|
||||||
rec->own_host = g_strdup(value);
|
rec->own_host = g_strdup(value);
|
||||||
@ -268,7 +268,7 @@ static void cmd_server_connect(const char *data)
|
|||||||
"connect", &optlist, &addr))
|
"connect", &optlist, &addr))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (*addr == '\0' || strcmp(addr, "+") == 0)
|
if (*addr == '\0' || g_strcmp0(addr, "+") == 0)
|
||||||
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
||||||
if (*addr == '+') window_create(NULL, FALSE);
|
if (*addr == '+') window_create(NULL, FALSE);
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ static void set_print_pattern(const char *pattern)
|
|||||||
|
|
||||||
if (stristr(rec->key, pattern) == NULL)
|
if (stristr(rec->key, pattern) == NULL)
|
||||||
continue;
|
continue;
|
||||||
if (strcmp(last_section, rec->section) != 0) {
|
if (g_strcmp0(last_section, rec->section) != 0) {
|
||||||
/* print section */
|
/* print section */
|
||||||
printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP,
|
printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP,
|
||||||
TXT_SET_TITLE, rec->section);
|
TXT_SET_TITLE, rec->section);
|
||||||
|
@ -168,7 +168,7 @@ static HILIGHT_REC *hilight_find(const char *text, char **channels)
|
|||||||
if ((channels == NULL && rec->channels == NULL))
|
if ((channels == NULL && rec->channels == NULL))
|
||||||
return rec; /* no channels - ok */
|
return rec; /* no channels - ok */
|
||||||
|
|
||||||
if (channels != NULL && strcmp(*channels, "*") == 0)
|
if (channels != NULL && g_strcmp0(*channels, "*") == 0)
|
||||||
return rec; /* ignore channels */
|
return rec; /* ignore channels */
|
||||||
|
|
||||||
if (channels == NULL || rec->channels == NULL)
|
if (channels == NULL || rec->channels == NULL)
|
||||||
@ -306,7 +306,7 @@ void hilight_update_text_dest(TEXT_DEST_REC *dest, HILIGHT_REC *rec)
|
|||||||
dest->hilight_priority = rec->priority;
|
dest->hilight_priority = rec->priority;
|
||||||
|
|
||||||
g_free_and_null(dest->hilight_color);
|
g_free_and_null(dest->hilight_color);
|
||||||
if (rec->act_color != NULL && strcmp(rec->act_color, "%n") == 0)
|
if (rec->act_color != NULL && g_strcmp0(rec->act_color, "%n") == 0)
|
||||||
dest->level |= MSGLEVEL_NO_ACT;
|
dest->level |= MSGLEVEL_NO_ACT;
|
||||||
else
|
else
|
||||||
dest->hilight_color = hilight_get_act_color(rec);
|
dest->hilight_color = hilight_get_act_color(rec);
|
||||||
|
@ -118,7 +118,7 @@ static CONFIG_NODE *key_config_find(const char *key)
|
|||||||
for (; tmp != NULL; tmp = config_node_next(tmp)) {
|
for (; tmp != NULL; tmp = config_node_next(tmp)) {
|
||||||
node = tmp->data;
|
node = tmp->data;
|
||||||
|
|
||||||
if (strcmp(config_node_get_str(node, "key", ""), key) == 0)
|
if (g_strcmp0(config_node_get_str(node, "key", ""), key) == 0)
|
||||||
return node;
|
return node;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -211,7 +211,7 @@ static int expand_combo(const char *start, const char *end, GSList **out)
|
|||||||
for (tmp = info->keys; tmp != NULL; tmp = tmp->next) {
|
for (tmp = info->keys; tmp != NULL; tmp = tmp->next) {
|
||||||
KEY_REC *rec = tmp->data;
|
KEY_REC *rec = tmp->data;
|
||||||
|
|
||||||
if (strcmp(rec->data, str) == 0)
|
if (g_strcmp0(rec->data, str) == 0)
|
||||||
list = g_slist_append(list, rec);
|
list = g_slist_append(list, rec);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -347,7 +347,7 @@ static void key_states_scan_key(const char *key, KEY_REC *rec)
|
|||||||
{
|
{
|
||||||
GSList *tmp, *out;
|
GSList *tmp, *out;
|
||||||
|
|
||||||
if (strcmp(rec->info->id, "key") == 0)
|
if (g_strcmp0(rec->info->id, "key") == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
out = g_slist_append(NULL, g_string_new(NULL));
|
out = g_slist_append(NULL, g_string_new(NULL));
|
||||||
@ -383,7 +383,7 @@ static void key_states_rescan(void)
|
|||||||
g_tree_foreach(key_states, (GTraverseFunc) key_state_destroy,
|
g_tree_foreach(key_states, (GTraverseFunc) key_state_destroy,
|
||||||
NULL);
|
NULL);
|
||||||
g_tree_destroy(key_states);
|
g_tree_destroy(key_states);
|
||||||
key_states = g_tree_new((GCompareFunc) strcmp);
|
key_states = g_tree_new((GCompareFunc) g_strcmp0);
|
||||||
|
|
||||||
temp = g_string_new(NULL);
|
temp = g_string_new(NULL);
|
||||||
g_hash_table_foreach(keys, (GHFunc) key_states_scan_key, temp);
|
g_hash_table_foreach(keys, (GHFunc) key_states_scan_key, temp);
|
||||||
@ -860,7 +860,7 @@ void keyboard_init(void)
|
|||||||
default_keys = g_hash_table_new((GHashFunc) g_str_hash,
|
default_keys = g_hash_table_new((GHashFunc) g_str_hash,
|
||||||
(GCompareFunc) g_str_equal);
|
(GCompareFunc) g_str_equal);
|
||||||
keyinfos = NULL;
|
keyinfos = NULL;
|
||||||
key_states = g_tree_new((GCompareFunc) strcmp);
|
key_states = g_tree_new((GCompareFunc) g_strcmp0);
|
||||||
key_config_frozen = 0;
|
key_config_frozen = 0;
|
||||||
memset(used_keys, 0, sizeof(used_keys));
|
memset(used_keys, 0, sizeof(used_keys));
|
||||||
|
|
||||||
|
@ -895,7 +895,7 @@ THEME_REC *theme_load(const char *setname)
|
|||||||
|
|
||||||
name = g_strdup(setname);
|
name = g_strdup(setname);
|
||||||
p = strrchr(name, '.');
|
p = strrchr(name, '.');
|
||||||
if (p != NULL && strcmp(p, ".theme") == 0) {
|
if (p != NULL && g_strcmp0(p, ".theme") == 0) {
|
||||||
/* remove the trailing .theme */
|
/* remove the trailing .theme */
|
||||||
*p = '\0';
|
*p = '\0';
|
||||||
}
|
}
|
||||||
@ -1358,9 +1358,9 @@ static void read_settings(void)
|
|||||||
|
|
||||||
theme = settings_get_str("theme");
|
theme = settings_get_str("theme");
|
||||||
len = strlen(current_theme->name);
|
len = strlen(current_theme->name);
|
||||||
if (strcmp(current_theme->name, theme) != 0 &&
|
if (g_strcmp0(current_theme->name, theme) != 0 &&
|
||||||
(strncmp(current_theme->name, theme, len) != 0 ||
|
(strncmp(current_theme->name, theme, len) != 0 ||
|
||||||
strcmp(theme+len, ".theme") != 0))
|
g_strcmp0(theme+len, ".theme") != 0))
|
||||||
change_theme(theme, TRUE);
|
change_theme(theme, TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -127,7 +127,7 @@ static void cmd_window_info(WINDOW_REC *win)
|
|||||||
win->active_server->tag : "NONE");
|
win->active_server->tag : "NONE");
|
||||||
} else {
|
} else {
|
||||||
if (win->active_server != NULL &&
|
if (win->active_server != NULL &&
|
||||||
strcmp(win->active_server->tag, win->servertag) != 0)
|
g_strcmp0(win->active_server->tag, win->servertag) != 0)
|
||||||
g_warning("Active server isn't the sticky server!");
|
g_warning("Active server isn't the sticky server!");
|
||||||
|
|
||||||
printformat_window(win, MSGLEVEL_CLIENTCRAP,
|
printformat_window(win, MSGLEVEL_CLIENTCRAP,
|
||||||
@ -609,7 +609,7 @@ static void cmd_window_name(const char *data)
|
|||||||
if (win == NULL || win == active_win)
|
if (win == NULL || win == active_win)
|
||||||
window_set_name(active_win, data);
|
window_set_name(active_win, data);
|
||||||
else if (active_win->name == NULL ||
|
else if (active_win->name == NULL ||
|
||||||
strcmp(active_win->name, data) != 0) {
|
g_strcmp0(active_win->name, data) != 0) {
|
||||||
printformat_window(active_win, MSGLEVEL_CLIENTERROR,
|
printformat_window(active_win, MSGLEVEL_CLIENTERROR,
|
||||||
TXT_WINDOW_NAME_NOT_UNIQUE, data);
|
TXT_WINDOW_NAME_NOT_UNIQUE, data);
|
||||||
}
|
}
|
||||||
|
@ -243,7 +243,7 @@ static void cmd_msg(const char *data, SERVER_REC *server, WI_ITEM_REC *item)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
/* handle only DCC messages */
|
/* handle only DCC messages */
|
||||||
if (strcmp(target, "*") == 0)
|
if (g_strcmp0(target, "*") == 0)
|
||||||
dcc = item_get_dcc(item);
|
dcc = item_get_dcc(item);
|
||||||
else if (*target == '=')
|
else if (*target == '=')
|
||||||
dcc = dcc_chat_find_id(target+1);
|
dcc = dcc_chat_find_id(target+1);
|
||||||
|
@ -427,7 +427,7 @@ static void event_no_such_nick(IRC_SERVER_REC *server, const char *data,
|
|||||||
g_return_if_fail(data != NULL);
|
g_return_if_fail(data != NULL);
|
||||||
|
|
||||||
params = event_get_params(data, 2, NULL, &unick);
|
params = event_get_params(data, 2, NULL, &unick);
|
||||||
if (!strcmp(unick, "*"))
|
if (!g_strcmp0(unick, "*"))
|
||||||
/* more information will be in the description,
|
/* more information will be in the description,
|
||||||
* e.g. * :Target left IRC. Failed to deliver: [hi] */
|
* e.g. * :Target left IRC. Failed to deliver: [hi] */
|
||||||
print_event_received(server, data, nick, FALSE);
|
print_event_received(server, data, nick, FALSE);
|
||||||
@ -605,7 +605,7 @@ static void print_event_received(IRC_SERVER_REC *server, const char *data,
|
|||||||
|
|
||||||
recoded = recode_in(SERVER(server), args, NULL);
|
recoded = recode_in(SERVER(server), args, NULL);
|
||||||
format = nick == NULL || server->real_address == NULL ||
|
format = nick == NULL || server->real_address == NULL ||
|
||||||
strcmp(nick, server->real_address) == 0 ?
|
g_strcmp0(nick, server->real_address) == 0 ?
|
||||||
IRCTXT_DEFAULT_EVENT : IRCTXT_DEFAULT_EVENT_SERVER;
|
IRCTXT_DEFAULT_EVENT : IRCTXT_DEFAULT_EVENT_SERVER;
|
||||||
printformat(server, target, MSGLEVEL_CRAP, format,
|
printformat(server, target, MSGLEVEL_CRAP, format,
|
||||||
nick, recoded, current_server_event);
|
nick, recoded, current_server_event);
|
||||||
|
@ -110,7 +110,7 @@ static void cmd_notice(const char *data, IRC_SERVER_REC *server,
|
|||||||
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_GETREST,
|
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_GETREST,
|
||||||
&target, &msg))
|
&target, &msg))
|
||||||
return;
|
return;
|
||||||
if (strcmp(target, "*") == 0)
|
if (g_strcmp0(target, "*") == 0)
|
||||||
target = item == NULL ? "" : window_item_get_target(item);
|
target = item == NULL ? "" : window_item_get_target(item);
|
||||||
|
|
||||||
if (*target == '\0' || *msg == '\0')
|
if (*target == '\0' || *msg == '\0')
|
||||||
@ -133,7 +133,7 @@ static void cmd_ctcp(const char *data, IRC_SERVER_REC *server,
|
|||||||
if (!cmd_get_params(data, &free_arg, 3 | PARAM_FLAG_GETREST,
|
if (!cmd_get_params(data, &free_arg, 3 | PARAM_FLAG_GETREST,
|
||||||
&target, &ctcpcmd, &ctcpdata))
|
&target, &ctcpcmd, &ctcpdata))
|
||||||
return;
|
return;
|
||||||
if (strcmp(target, "*") == 0)
|
if (g_strcmp0(target, "*") == 0)
|
||||||
target = item == NULL ? "" : window_item_get_target(item);
|
target = item == NULL ? "" : window_item_get_target(item);
|
||||||
if (*target == '\0' || *ctcpcmd == '\0')
|
if (*target == '\0' || *ctcpcmd == '\0')
|
||||||
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
||||||
@ -162,7 +162,7 @@ static void cmd_nctcp(const char *data, IRC_SERVER_REC *server,
|
|||||||
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_GETREST,
|
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_GETREST,
|
||||||
&target, &text))
|
&target, &text))
|
||||||
return;
|
return;
|
||||||
if (strcmp(target, "*") == 0)
|
if (g_strcmp0(target, "*") == 0)
|
||||||
target = item == NULL ? "" : window_item_get_target(item);
|
target = item == NULL ? "" : window_item_get_target(item);
|
||||||
if (*target == '\0' || *text == '\0')
|
if (*target == '\0' || *text == '\0')
|
||||||
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
||||||
@ -262,7 +262,7 @@ static void cmd_ban(const char *data, IRC_SERVER_REC *server,
|
|||||||
if (chanrec == NULL && *channel == '\0')
|
if (chanrec == NULL && *channel == '\0')
|
||||||
cmd_param_error(CMDERR_NOT_JOINED);
|
cmd_param_error(CMDERR_NOT_JOINED);
|
||||||
|
|
||||||
if (*channel != '\0' && strcmp(channel, "*") != 0)
|
if (*channel != '\0' && g_strcmp0(channel, "*") != 0)
|
||||||
chanrec = irc_channel_find(server, channel);
|
chanrec = irc_channel_find(server, channel);
|
||||||
|
|
||||||
if (chanrec == NULL || !chanrec->synced) {
|
if (chanrec == NULL || !chanrec->synced) {
|
||||||
|
@ -178,7 +178,7 @@ static void sig_message_irc_action(IRC_SERVER_REC *server, const char *msg,
|
|||||||
if (ischannel(*target)) {
|
if (ischannel(*target)) {
|
||||||
item = irc_channel_find(server, target);
|
item = irc_channel_find(server, target);
|
||||||
} else {
|
} else {
|
||||||
own = (!strcmp(nick, server->nick));
|
own = (!g_strcmp0(nick, server->nick));
|
||||||
item = privmsg_get_query(SERVER(server), own ? target : nick, FALSE, level);
|
item = privmsg_get_query(SERVER(server), own ? target : nick, FALSE, level);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -135,7 +135,7 @@ static void msg_multi_mode(IRC_CHANNEL_REC *channel, const char *sender,
|
|||||||
signal_add("print starting", (SIGNAL_FUNC) sig_print_starting);
|
signal_add("print starting", (SIGNAL_FUNC) sig_print_starting);
|
||||||
|
|
||||||
rec = mode_find_channel(channel);
|
rec = mode_find_channel(channel);
|
||||||
if (rec != NULL && strcmp(rec->mode, mode) != 0) {
|
if (rec != NULL && g_strcmp0(rec->mode, mode) != 0) {
|
||||||
/* different mode than last time, show and remove the old */
|
/* different mode than last time, show and remove the old */
|
||||||
print_mode(rec);
|
print_mode(rec);
|
||||||
mode_destroy(rec);
|
mode_destroy(rec);
|
||||||
|
@ -134,8 +134,8 @@ static void event_whois_realhost(IRC_SERVER_REC *server, const char *data)
|
|||||||
/* <yournick> real hostname <nick> <hostname> */
|
/* <yournick> real hostname <nick> <hostname> */
|
||||||
params = event_get_params(data, 5, NULL, &nick, &txt_real,
|
params = event_get_params(data, 5, NULL, &nick, &txt_real,
|
||||||
&txt_hostname, &hostname);
|
&txt_hostname, &hostname);
|
||||||
if (strcmp(txt_real, "real") != 0 ||
|
if (g_strcmp0(txt_real, "real") != 0 ||
|
||||||
strcmp(txt_hostname, "hostname") != 0) {
|
g_strcmp0(txt_hostname, "hostname") != 0) {
|
||||||
/* <yournick> <nick> :... from <hostname> */
|
/* <yournick> <nick> :... from <hostname> */
|
||||||
g_free(params);
|
g_free(params);
|
||||||
params = event_get_params(data, 3, NULL, &nick, &hostname);
|
params = event_get_params(data, 3, NULL, &nick, &hostname);
|
||||||
@ -219,7 +219,7 @@ static void event_whois_usermode(IRC_SERVER_REC *server, const char *data)
|
|||||||
params = event_get_params(data, 4, NULL, &txt_usermodes,
|
params = event_get_params(data, 4, NULL, &txt_usermodes,
|
||||||
&nick, &usermode);
|
&nick, &usermode);
|
||||||
|
|
||||||
if (strcmp(txt_usermodes, "usermodes") == 0) {
|
if (g_strcmp0(txt_usermodes, "usermodes") == 0) {
|
||||||
/* <yournick> usermodes <nick> usermode */
|
/* <yournick> usermodes <nick> usermode */
|
||||||
printformat(server, nick, MSGLEVEL_CRAP,
|
printformat(server, nick, MSGLEVEL_CRAP,
|
||||||
IRCTXT_WHOIS_USERMODE, nick, usermode);
|
IRCTXT_WHOIS_USERMODE, nick, usermode);
|
||||||
|
@ -392,7 +392,7 @@ static void sig_gui_key_pressed(gpointer keyp)
|
|||||||
str[g_unichar_to_utf8(key, str)] = '\0';
|
str[g_unichar_to_utf8(key, str)] = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(str, "^") == 0) {
|
if (g_strcmp0(str, "^") == 0) {
|
||||||
/* change it as ^-, that is an invalid control char */
|
/* change it as ^-, that is an invalid control char */
|
||||||
str[1] = '-';
|
str[1] = '-';
|
||||||
str[2] = '\0';
|
str[2] = '\0';
|
||||||
|
@ -95,7 +95,7 @@ statusbar_config_find(STATUSBAR_GROUP_REC *group, const char *name)
|
|||||||
for (tmp = group->config_bars; tmp != NULL; tmp = tmp->next) {
|
for (tmp = group->config_bars; tmp != NULL; tmp = tmp->next) {
|
||||||
STATUSBAR_CONFIG_REC *config = tmp->data;
|
STATUSBAR_CONFIG_REC *config = tmp->data;
|
||||||
|
|
||||||
if (strcmp(config->name, name) == 0)
|
if (g_strcmp0(config->name, name) == 0)
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -137,7 +137,7 @@ static void statusbar_read_item(STATUSBAR_CONFIG_REC *bar, CONFIG_NODE *node)
|
|||||||
int priority, right_alignment;
|
int priority, right_alignment;
|
||||||
|
|
||||||
priority = config_node_get_int(node, "priority", 0);
|
priority = config_node_get_int(node, "priority", 0);
|
||||||
right_alignment = strcmp(config_node_get_str(node, "alignment", ""), "right") == 0;
|
right_alignment = g_strcmp0(config_node_get_str(node, "alignment", ""), "right") == 0;
|
||||||
statusbar_item_config_create(bar, node->key,
|
statusbar_item_config_create(bar, node->key,
|
||||||
priority, right_alignment);
|
priority, right_alignment);
|
||||||
}
|
}
|
||||||
|
@ -129,7 +129,7 @@ STATUSBAR_GROUP_REC *statusbar_group_find(const char *name)
|
|||||||
for (tmp = statusbar_groups; tmp != NULL; tmp = tmp->next) {
|
for (tmp = statusbar_groups; tmp != NULL; tmp = tmp->next) {
|
||||||
STATUSBAR_GROUP_REC *rec = tmp->data;
|
STATUSBAR_GROUP_REC *rec = tmp->data;
|
||||||
|
|
||||||
if (strcmp(rec->name, name) == 0)
|
if (g_strcmp0(rec->name, name) == 0)
|
||||||
return rec;
|
return rec;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -617,7 +617,7 @@ STATUSBAR_REC *statusbar_find(STATUSBAR_GROUP_REC *group, const char *name,
|
|||||||
STATUSBAR_REC *rec = tmp->data;
|
STATUSBAR_REC *rec = tmp->data;
|
||||||
|
|
||||||
if (rec->parent_window == window &&
|
if (rec->parent_window == window &&
|
||||||
strcmp(rec->config->name, name) == 0)
|
g_strcmp0(rec->config->name, name) == 0)
|
||||||
return rec;
|
return rec;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -646,11 +646,11 @@ static int term_setup(TERM_REC *term)
|
|||||||
str = g_string_new(NULL);
|
str = g_string_new(NULL);
|
||||||
if (term->TI_sgr0)
|
if (term->TI_sgr0)
|
||||||
g_string_append(str, term->TI_sgr0);
|
g_string_append(str, term->TI_sgr0);
|
||||||
if (term->TI_rmul && (term->TI_sgr0 == NULL || strcmp(term->TI_rmul, term->TI_sgr0) != 0))
|
if (term->TI_rmul && (term->TI_sgr0 == NULL || g_strcmp0(term->TI_rmul, term->TI_sgr0) != 0))
|
||||||
g_string_append(str, term->TI_rmul);
|
g_string_append(str, term->TI_rmul);
|
||||||
if (term->TI_rmso && (term->TI_sgr0 == NULL || strcmp(term->TI_rmso, term->TI_sgr0) != 0))
|
if (term->TI_rmso && (term->TI_sgr0 == NULL || g_strcmp0(term->TI_rmso, term->TI_sgr0) != 0))
|
||||||
g_string_append(str, term->TI_rmso);
|
g_string_append(str, term->TI_rmso);
|
||||||
if (term->TI_ritm && (term->TI_sgr0 == NULL || strcmp(term->TI_ritm, term->TI_sgr0) != 0))
|
if (term->TI_ritm && (term->TI_sgr0 == NULL || g_strcmp0(term->TI_ritm, term->TI_sgr0) != 0))
|
||||||
g_string_append(str, term->TI_ritm);
|
g_string_append(str, term->TI_ritm);
|
||||||
term->TI_normal = str->str;
|
term->TI_normal = str->str;
|
||||||
g_string_free(str, FALSE);
|
g_string_free(str, FALSE);
|
||||||
|
@ -188,7 +188,7 @@ static void command_set_ban(const char *data, IRC_SERVER_REC *server,
|
|||||||
item, &channel, &nicks)) return;
|
item, &channel, &nicks)) return;
|
||||||
if (!ischannel(*channel)) cmd_param_error(CMDERR_NOT_JOINED);
|
if (!ischannel(*channel)) cmd_param_error(CMDERR_NOT_JOINED);
|
||||||
if (*nicks == '\0') {
|
if (*nicks == '\0') {
|
||||||
if (strcmp(data, "*") != 0)
|
if (g_strcmp0(data, "*") != 0)
|
||||||
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
||||||
/* /BAN * or /UNBAN * - ban/unban everyone */
|
/* /BAN * or /UNBAN * - ban/unban everyone */
|
||||||
nicks = (char *) data;
|
nicks = (char *) data;
|
||||||
@ -318,7 +318,7 @@ static void cmd_unban(const char *data, IRC_SERVER_REC *server, void *item)
|
|||||||
static void read_settings(void)
|
static void read_settings(void)
|
||||||
{
|
{
|
||||||
if (default_ban_type_str != NULL &&
|
if (default_ban_type_str != NULL &&
|
||||||
strcmp(default_ban_type_str, settings_get_str("ban_type")) == 0)
|
g_strcmp0(default_ban_type_str, settings_get_str("ban_type")) == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
g_free_not_null(default_ban_type_str);
|
g_free_not_null(default_ban_type_str);
|
||||||
|
@ -270,7 +270,7 @@ static void event_join(IRC_SERVER_REC *server, const char *data, const char *nic
|
|||||||
}
|
}
|
||||||
|
|
||||||
chanrec->joined = TRUE;
|
chanrec->joined = TRUE;
|
||||||
if (strcmp(chanrec->name, channel) != 0) {
|
if (g_strcmp0(chanrec->name, channel) != 0) {
|
||||||
g_free(chanrec->name);
|
g_free(chanrec->name);
|
||||||
chanrec->name = g_strdup(channel);
|
chanrec->name = g_strdup(channel);
|
||||||
}
|
}
|
||||||
|
@ -72,7 +72,7 @@ static void cmd_notice(const char *data, IRC_SERVER_REC *server,
|
|||||||
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_GETREST,
|
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_GETREST,
|
||||||
&target, &msg))
|
&target, &msg))
|
||||||
return;
|
return;
|
||||||
if (strcmp(target, "*") == 0)
|
if (g_strcmp0(target, "*") == 0)
|
||||||
target = item == NULL ? NULL : window_item_get_target(item);
|
target = item == NULL ? NULL : window_item_get_target(item);
|
||||||
if (target == NULL || *target == '\0' || *msg == '\0')
|
if (target == NULL || *target == '\0' || *msg == '\0')
|
||||||
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
||||||
@ -99,7 +99,7 @@ static void cmd_ctcp(const char *data, IRC_SERVER_REC *server,
|
|||||||
if (!cmd_get_params(data, &free_arg, 3 | PARAM_FLAG_GETREST,
|
if (!cmd_get_params(data, &free_arg, 3 | PARAM_FLAG_GETREST,
|
||||||
&target, &ctcpcmd, &ctcpdata))
|
&target, &ctcpcmd, &ctcpdata))
|
||||||
return;
|
return;
|
||||||
if (strcmp(target, "*") == 0)
|
if (g_strcmp0(target, "*") == 0)
|
||||||
target = item == NULL ? NULL : window_item_get_target(item);
|
target = item == NULL ? NULL : window_item_get_target(item);
|
||||||
if (target == NULL || *target == '\0' || *ctcpcmd == '\0')
|
if (target == NULL || *target == '\0' || *ctcpcmd == '\0')
|
||||||
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
||||||
@ -133,7 +133,7 @@ static void cmd_nctcp(const char *data, IRC_SERVER_REC *server,
|
|||||||
if (!cmd_get_params(data, &free_arg, 3 | PARAM_FLAG_GETREST,
|
if (!cmd_get_params(data, &free_arg, 3 | PARAM_FLAG_GETREST,
|
||||||
&target, &ctcpcmd, &ctcpdata))
|
&target, &ctcpcmd, &ctcpdata))
|
||||||
return;
|
return;
|
||||||
if (strcmp(target, "*") == 0)
|
if (g_strcmp0(target, "*") == 0)
|
||||||
target = item == NULL ? NULL : window_item_get_target(item);
|
target = item == NULL ? NULL : window_item_get_target(item);
|
||||||
if (target == NULL || *target == '\0' || *ctcpcmd == '\0')
|
if (target == NULL || *target == '\0' || *ctcpcmd == '\0')
|
||||||
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
||||||
@ -238,7 +238,7 @@ static void cmd_invite(const char *data, IRC_SERVER_REC *server, WI_ITEM_REC *it
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (*nick == '\0') cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
if (*nick == '\0') cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
||||||
if (*channame == '\0' || strcmp(channame, "*") == 0) {
|
if (*channame == '\0' || g_strcmp0(channame, "*") == 0) {
|
||||||
if (!IS_IRC_CHANNEL(item))
|
if (!IS_IRC_CHANNEL(item))
|
||||||
cmd_param_error(CMDERR_NOT_JOINED);
|
cmd_param_error(CMDERR_NOT_JOINED);
|
||||||
|
|
||||||
@ -284,13 +284,13 @@ static void cmd_who(const char *data, IRC_SERVER_REC *server,
|
|||||||
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_GETREST, &channel, &rest))
|
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_GETREST, &channel, &rest))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (strcmp(channel, "*") == 0 || *channel == '\0') {
|
if (g_strcmp0(channel, "*") == 0 || *channel == '\0') {
|
||||||
if (!IS_IRC_CHANNEL(item))
|
if (!IS_IRC_CHANNEL(item))
|
||||||
cmd_param_error(CMDERR_NOT_JOINED);
|
cmd_param_error(CMDERR_NOT_JOINED);
|
||||||
|
|
||||||
channel = IRC_CHANNEL(item)->name;
|
channel = IRC_CHANNEL(item)->name;
|
||||||
}
|
}
|
||||||
if (strcmp(channel, "**") == 0) {
|
if (g_strcmp0(channel, "**") == 0) {
|
||||||
/* ** displays all nicks.. */
|
/* ** displays all nicks.. */
|
||||||
*channel = '\0';
|
*channel = '\0';
|
||||||
}
|
}
|
||||||
@ -313,14 +313,14 @@ static void cmd_names(const char *data, IRC_SERVER_REC *server,
|
|||||||
PARAM_FLAG_GETREST, "names", &optlist, &channel))
|
PARAM_FLAG_GETREST, "names", &optlist, &channel))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (strcmp(channel, "*") == 0 || *channel == '\0') {
|
if (g_strcmp0(channel, "*") == 0 || *channel == '\0') {
|
||||||
if (!IS_IRC_CHANNEL(item))
|
if (!IS_IRC_CHANNEL(item))
|
||||||
cmd_param_error(CMDERR_NOT_JOINED);
|
cmd_param_error(CMDERR_NOT_JOINED);
|
||||||
|
|
||||||
channel = IRC_CHANNEL(item)->name;
|
channel = IRC_CHANNEL(item)->name;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(channel, "**") == 0) {
|
if (g_strcmp0(channel, "**") == 0) {
|
||||||
/* ** displays all nicks.. */
|
/* ** displays all nicks.. */
|
||||||
irc_send_cmd(server, "NAMES");
|
irc_send_cmd(server, "NAMES");
|
||||||
} else {
|
} else {
|
||||||
@ -409,7 +409,7 @@ static void cmd_whois(const char *data, IRC_SERVER_REC *server,
|
|||||||
query = qserver = queryitem->name;
|
query = qserver = queryitem->name;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(query, "*") == 0 &&
|
if (g_strcmp0(query, "*") == 0 &&
|
||||||
g_hash_table_lookup(optlist, "yes") == NULL)
|
g_hash_table_lookup(optlist, "yes") == NULL)
|
||||||
cmd_param_error(CMDERR_NOT_GOOD_IDEA);
|
cmd_param_error(CMDERR_NOT_GOOD_IDEA);
|
||||||
|
|
||||||
@ -810,7 +810,7 @@ static void cmd_knockout(const char *data, IRC_SERVER_REC *server,
|
|||||||
for (ptr = server->knockoutlist; ptr != NULL; ptr = ptr->next) {
|
for (ptr = server->knockoutlist; ptr != NULL; ptr = ptr->next) {
|
||||||
rec = ptr->data;
|
rec = ptr->data;
|
||||||
if (channel == rec->channel &&
|
if (channel == rec->channel &&
|
||||||
!strcmp(rec->ban, banmasks))
|
!g_strcmp0(rec->ban, banmasks))
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (ptr == NULL) {
|
if (ptr == NULL) {
|
||||||
|
@ -67,13 +67,13 @@ static void check_query_changes(IRC_SERVER_REC *server, const char *nick,
|
|||||||
if (query == NULL)
|
if (query == NULL)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (strcmp(query->name, nick) != 0) {
|
if (g_strcmp0(query->name, nick) != 0) {
|
||||||
/* upper/lowercase chars in nick changed */
|
/* upper/lowercase chars in nick changed */
|
||||||
query_change_nick(query, nick);
|
query_change_nick(query, nick);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (address != NULL && (query->address == NULL ||
|
if (address != NULL && (query->address == NULL ||
|
||||||
strcmp(query->address, address) != 0)) {
|
g_strcmp0(query->address, address) != 0)) {
|
||||||
/* host changed */
|
/* host changed */
|
||||||
query_change_address(query, address);
|
query_change_address(query, address);
|
||||||
}
|
}
|
||||||
@ -109,7 +109,7 @@ static void event_nick(SERVER_REC *server, const char *data,
|
|||||||
query = query_find(server, orignick);
|
query = query_find(server, orignick);
|
||||||
if (query != NULL) {
|
if (query != NULL) {
|
||||||
params = event_get_params(data, 1, &nick);
|
params = event_get_params(data, 1, &nick);
|
||||||
if (strcmp(query->name, nick) != 0)
|
if (g_strcmp0(query->name, nick) != 0)
|
||||||
query_change_nick(query, nick);
|
query_change_nick(query, nick);
|
||||||
g_free(params);
|
g_free(params);
|
||||||
}
|
}
|
||||||
|
@ -638,7 +638,7 @@ static void event_connected(IRC_SERVER_REC *server, const char *data, const char
|
|||||||
|
|
||||||
params = event_get_params(data, 1, &nick);
|
params = event_get_params(data, 1, &nick);
|
||||||
|
|
||||||
if (strcmp(server->nick, nick) != 0) {
|
if (g_strcmp0(server->nick, nick) != 0) {
|
||||||
/* nick changed unexpectedly .. connected via proxy, etc. */
|
/* nick changed unexpectedly .. connected via proxy, etc. */
|
||||||
g_free(server->nick);
|
g_free(server->nick);
|
||||||
server->nick = g_strdup(nick);
|
server->nick = g_strdup(nick);
|
||||||
|
@ -398,7 +398,7 @@ void parse_channel_modes(IRC_CHANNEL_REC *channel, const char *setby,
|
|||||||
old_key = NULL;
|
old_key = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(newmode->str, channel->mode) != 0) {
|
if (g_strcmp0(newmode->str, channel->mode) != 0) {
|
||||||
g_free(channel->mode);
|
g_free(channel->mode);
|
||||||
channel->mode = g_strdup(newmode->str);
|
channel->mode = g_strdup(newmode->str);
|
||||||
|
|
||||||
@ -842,7 +842,7 @@ static void cmd_mode(const char *data, IRC_SERVER_REC *server,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(target, "*") == 0) {
|
if (g_strcmp0(target, "*") == 0) {
|
||||||
if (!IS_IRC_CHANNEL(channel))
|
if (!IS_IRC_CHANNEL(channel))
|
||||||
cmd_param_error(CMDERR_NOT_JOINED);
|
cmd_param_error(CMDERR_NOT_JOINED);
|
||||||
|
|
||||||
|
@ -339,7 +339,7 @@ static GSList *redirect_cmd_list_find(GSList *list, const char *event)
|
|||||||
while (list != NULL) {
|
while (list != NULL) {
|
||||||
const char *str = list->data;
|
const char *str = list->data;
|
||||||
|
|
||||||
if (strcmp(str, event) == 0)
|
if (g_strcmp0(str, event) == 0)
|
||||||
break;
|
break;
|
||||||
list = list->next->next;
|
list = list->next->next;
|
||||||
}
|
}
|
||||||
@ -365,7 +365,7 @@ static const char *redirect_match(REDIRECT_REC *redirect, const char *event,
|
|||||||
use the default signal */
|
use the default signal */
|
||||||
signal = NULL;
|
signal = NULL;
|
||||||
for (tmp = redirect->signals; tmp != NULL; tmp = tmp->next->next) {
|
for (tmp = redirect->signals; tmp != NULL; tmp = tmp->next->next) {
|
||||||
if (strcmp(tmp->data, event) == 0) {
|
if (g_strcmp0(tmp->data, event) == 0) {
|
||||||
signal = tmp->next->data;
|
signal = tmp->next->data;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -527,7 +527,7 @@ server_redirect_get(IRC_SERVER_REC *server, const char *prefix,
|
|||||||
next = ptr->next;
|
next = ptr->next;
|
||||||
r = ptr->data;
|
r = ptr->data;
|
||||||
if (prefix != NULL && r->prefix != NULL &&
|
if (prefix != NULL && r->prefix != NULL &&
|
||||||
strcmp(prefix, r->prefix)) {
|
g_strcmp0(prefix, r->prefix)) {
|
||||||
/* not from this server */
|
/* not from this server */
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -57,7 +57,7 @@ static void sig_dcc_request(GET_DCC_REC *dcc, const char *nickaddr)
|
|||||||
/* don't autoget files beginning with a dot, if download dir is
|
/* don't autoget files beginning with a dot, if download dir is
|
||||||
our home dir (stupid kludge for stupid people) */
|
our home dir (stupid kludge for stupid people) */
|
||||||
if (*dcc->arg == '.' &&
|
if (*dcc->arg == '.' &&
|
||||||
strcmp(settings_get_str("dcc_download_path"), "~") == 0)
|
g_strcmp0(settings_get_str("dcc_download_path"), "~") == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* check file size limit, NOTE: it's still possible to send a
|
/* check file size limit, NOTE: it's still possible to send a
|
||||||
|
@ -191,7 +191,7 @@ static void cmd_msg(const char *data, SERVER_REC *server, WI_ITEM_REC *item)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
/* handle only DCC messages */
|
/* handle only DCC messages */
|
||||||
if (strcmp(target, "*") == 0)
|
if (g_strcmp0(target, "*") == 0)
|
||||||
dcc = item_get_dcc(item);
|
dcc = item_get_dcc(item);
|
||||||
else if (*target == '=')
|
else if (*target == '=')
|
||||||
dcc = dcc_chat_find_id(target+1);
|
dcc = dcc_chat_find_id(target+1);
|
||||||
@ -625,7 +625,7 @@ static void ctcp_msg_dcc_chat(IRC_SERVER_REC *server, const char *data,
|
|||||||
g_strfreev(params);
|
g_strfreev(params);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
passive = paramcount == 4 && strcmp(params[2], "0") == 0;
|
passive = paramcount == 4 && g_strcmp0(params[2], "0") == 0;
|
||||||
|
|
||||||
dcc = DCC_CHAT(dcc_find_request(DCC_CHAT_TYPE, nick, NULL));
|
dcc = DCC_CHAT(dcc_find_request(DCC_CHAT_TYPE, nick, NULL));
|
||||||
if (dcc != NULL) {
|
if (dcc != NULL) {
|
||||||
|
@ -554,7 +554,7 @@ void cmd_dcc_receive(const char *data, DCC_GET_FUNC accept_func,
|
|||||||
next = tmp->next;
|
next = tmp->next;
|
||||||
if (IS_DCC_GET(dcc) && g_ascii_strcasecmp(dcc->nick, nick) == 0 &&
|
if (IS_DCC_GET(dcc) && g_ascii_strcasecmp(dcc->nick, nick) == 0 &&
|
||||||
(dcc_is_waiting_user(dcc) || dcc->from_dccserver) &&
|
(dcc_is_waiting_user(dcc) || dcc->from_dccserver) &&
|
||||||
(*fname == '\0' || strcmp(dcc->arg, fname) == 0)) {
|
(*fname == '\0' || g_strcmp0(dcc->arg, fname) == 0)) {
|
||||||
found = TRUE;
|
found = TRUE;
|
||||||
if (!dcc_is_passive(dcc))
|
if (!dcc_is_passive(dcc))
|
||||||
accept_func(dcc);
|
accept_func(dcc);
|
||||||
|
@ -149,7 +149,7 @@ DCC_REC *dcc_find_request(int type, const char *nick, const char *arg)
|
|||||||
|
|
||||||
if (dcc->type == type && !dcc_is_connected(dcc) &&
|
if (dcc->type == type && !dcc_is_connected(dcc) &&
|
||||||
g_ascii_strcasecmp(dcc->nick, nick) == 0 &&
|
g_ascii_strcasecmp(dcc->nick, nick) == 0 &&
|
||||||
(arg == NULL || strcmp(dcc->arg, arg) == 0))
|
(arg == NULL || g_strcmp0(dcc->arg, arg) == 0))
|
||||||
return dcc;
|
return dcc;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -516,7 +516,7 @@ static void cmd_dcc_close(char *data, IRC_SERVER_REC *server)
|
|||||||
|
|
||||||
next = tmp->next;
|
next = tmp->next;
|
||||||
if (dcc->type == type && g_ascii_strcasecmp(dcc->nick, nick) == 0 &&
|
if (dcc->type == type && g_ascii_strcasecmp(dcc->nick, nick) == 0 &&
|
||||||
(*arg == '\0' || strcmp(dcc->arg, arg) == 0)) {
|
(*arg == '\0' || g_strcmp0(dcc->arg, arg) == 0)) {
|
||||||
dcc_reject(dcc, server);
|
dcc_reject(dcc, server);
|
||||||
found = TRUE;
|
found = TRUE;
|
||||||
}
|
}
|
||||||
|
@ -91,7 +91,7 @@ int notifylist_ircnets_match(NOTIFYLIST_REC *rec, const char *ircnet)
|
|||||||
|
|
||||||
if (rec->ircnets == NULL) return TRUE;
|
if (rec->ircnets == NULL) return TRUE;
|
||||||
if (ircnet == NULL) return FALSE;
|
if (ircnet == NULL) return FALSE;
|
||||||
if (strcmp(ircnet, "*") == 0) return TRUE;
|
if (g_strcmp0(ircnet, "*") == 0) return TRUE;
|
||||||
|
|
||||||
for (tmp = rec->ircnets; *tmp != NULL; tmp++) {
|
for (tmp = rec->ircnets; *tmp != NULL; tmp++) {
|
||||||
if (g_ascii_strcasecmp(*tmp, ircnet) == 0)
|
if (g_ascii_strcasecmp(*tmp, ircnet) == 0)
|
||||||
|
@ -209,7 +209,7 @@ static void dump_join(IRC_CHANNEL_REC *channel, CLIENT_REC *client)
|
|||||||
void proxy_client_reset_nick(CLIENT_REC *client)
|
void proxy_client_reset_nick(CLIENT_REC *client)
|
||||||
{
|
{
|
||||||
if (client->server == NULL ||
|
if (client->server == NULL ||
|
||||||
strcmp(client->nick, client->server->nick) == 0)
|
g_strcmp0(client->nick, client->server->nick) == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
proxy_outdata(client, ":%s!proxy NICK :%s\n",
|
proxy_outdata(client, ":%s!proxy NICK :%s\n",
|
||||||
|
@ -82,7 +82,7 @@ static void grab_who(CLIENT_REC *client, const char *channel)
|
|||||||
arg = g_string_new(channel);
|
arg = g_string_new(channel);
|
||||||
|
|
||||||
for (tmp = list, count = 0; *tmp != NULL; tmp++, count++) {
|
for (tmp = list, count = 0; *tmp != NULL; tmp++, count++) {
|
||||||
if (strcmp(*tmp, "0") == 0) {
|
if (g_strcmp0(*tmp, "0") == 0) {
|
||||||
/* /who 0 displays everyone */
|
/* /who 0 displays everyone */
|
||||||
**tmp = '*';
|
**tmp = '*';
|
||||||
}
|
}
|
||||||
@ -106,18 +106,18 @@ static void handle_client_connect_cmd(CLIENT_REC *client,
|
|||||||
|
|
||||||
password = settings_get_str("irssiproxy_password");
|
password = settings_get_str("irssiproxy_password");
|
||||||
|
|
||||||
if (password != NULL && strcmp(cmd, "PASS") == 0) {
|
if (password != NULL && g_strcmp0(cmd, "PASS") == 0) {
|
||||||
if (strcmp(password, args) == 0)
|
if (g_strcmp0(password, args) == 0)
|
||||||
client->pass_sent = TRUE;
|
client->pass_sent = TRUE;
|
||||||
else {
|
else {
|
||||||
/* wrong password! */
|
/* wrong password! */
|
||||||
remove_client(client);
|
remove_client(client);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else if (strcmp(cmd, "NICK") == 0) {
|
} else if (g_strcmp0(cmd, "NICK") == 0) {
|
||||||
g_free_not_null(client->nick);
|
g_free_not_null(client->nick);
|
||||||
client->nick = g_strdup(args);
|
client->nick = g_strdup(args);
|
||||||
} else if (strcmp(cmd, "USER") == 0) {
|
} else if (g_strcmp0(cmd, "USER") == 0) {
|
||||||
client->user_sent = TRUE;
|
client->user_sent = TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -141,12 +141,12 @@ static void handle_client_cmd(CLIENT_REC *client, char *cmd, char *args,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(cmd, "QUIT") == 0) {
|
if (g_strcmp0(cmd, "QUIT") == 0) {
|
||||||
remove_client(client);
|
remove_client(client);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(cmd, "PING") == 0) {
|
if (g_strcmp0(cmd, "PING") == 0) {
|
||||||
/* Reply to PING, if the target parameter is either
|
/* Reply to PING, if the target parameter is either
|
||||||
proxy_adress, our own nick or empty. */
|
proxy_adress, our own nick or empty. */
|
||||||
char *params, *origin, *target;
|
char *params, *origin, *target;
|
||||||
@ -164,7 +164,7 @@ static void handle_client_cmd(CLIENT_REC *client, char *cmd, char *args,
|
|||||||
g_free(params);
|
g_free(params);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(cmd, "PROXY") == 0) {
|
if (g_strcmp0(cmd, "PROXY") == 0) {
|
||||||
if (g_ascii_strcasecmp(args, "CTCP ON") == 0) {
|
if (g_ascii_strcasecmp(args, "CTCP ON") == 0) {
|
||||||
/* client wants all ctcps */
|
/* client wants all ctcps */
|
||||||
client->want_ctcp = 1;
|
client->want_ctcp = 1;
|
||||||
@ -200,11 +200,11 @@ static void handle_client_cmd(CLIENT_REC *client, char *cmd, char *args,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* check if the command could be redirected */
|
/* check if the command could be redirected */
|
||||||
if (strcmp(cmd, "WHO") == 0)
|
if (g_strcmp0(cmd, "WHO") == 0)
|
||||||
grab_who(client, args);
|
grab_who(client, args);
|
||||||
else if (strcmp(cmd, "WHOWAS") == 0)
|
else if (g_strcmp0(cmd, "WHOWAS") == 0)
|
||||||
proxy_redirect_event(client, "whowas", 1, args, -1);
|
proxy_redirect_event(client, "whowas", 1, args, -1);
|
||||||
else if (strcmp(cmd, "WHOIS") == 0) {
|
else if (g_strcmp0(cmd, "WHOIS") == 0) {
|
||||||
char *p;
|
char *p;
|
||||||
|
|
||||||
/* convert dots to spaces */
|
/* convert dots to spaces */
|
||||||
@ -212,11 +212,11 @@ static void handle_client_cmd(CLIENT_REC *client, char *cmd, char *args,
|
|||||||
if (*p == ',') *p = ' ';
|
if (*p == ',') *p = ' ';
|
||||||
|
|
||||||
proxy_redirect_event(client, "whois", 1, args, TRUE);
|
proxy_redirect_event(client, "whois", 1, args, TRUE);
|
||||||
} else if (strcmp(cmd, "ISON") == 0)
|
} else if (g_strcmp0(cmd, "ISON") == 0)
|
||||||
proxy_redirect_event(client, "ison", 1, args, -1);
|
proxy_redirect_event(client, "ison", 1, args, -1);
|
||||||
else if (strcmp(cmd, "USERHOST") == 0)
|
else if (g_strcmp0(cmd, "USERHOST") == 0)
|
||||||
proxy_redirect_event(client, "userhost", 1, args, -1);
|
proxy_redirect_event(client, "userhost", 1, args, -1);
|
||||||
else if (strcmp(cmd, "MODE") == 0) {
|
else if (g_strcmp0(cmd, "MODE") == 0) {
|
||||||
/* convert dots to spaces */
|
/* convert dots to spaces */
|
||||||
char *slist, *str, mode, *p;
|
char *slist, *str, mode, *p;
|
||||||
int argc;
|
int argc;
|
||||||
@ -252,7 +252,7 @@ static void handle_client_cmd(CLIENT_REC *client, char *cmd, char *args,
|
|||||||
}
|
}
|
||||||
g_free(str);
|
g_free(str);
|
||||||
g_free(slist);
|
g_free(slist);
|
||||||
} else if (strcmp(cmd, "PRIVMSG") == 0) {
|
} else if (g_strcmp0(cmd, "PRIVMSG") == 0) {
|
||||||
/* send the message to other clients as well */
|
/* send the message to other clients as well */
|
||||||
char *params, *target, *msg;
|
char *params, *target, *msg;
|
||||||
|
|
||||||
@ -283,9 +283,9 @@ static void handle_client_cmd(CLIENT_REC *client, char *cmd, char *args,
|
|||||||
}
|
}
|
||||||
ignore_next = FALSE;
|
ignore_next = FALSE;
|
||||||
g_free(params);
|
g_free(params);
|
||||||
} else if (strcmp(cmd, "PING") == 0) {
|
} else if (g_strcmp0(cmd, "PING") == 0) {
|
||||||
proxy_redirect_event(client, "ping", 1, NULL, TRUE);
|
proxy_redirect_event(client, "ping", 1, NULL, TRUE);
|
||||||
} else if (strcmp(cmd, "AWAY") == 0) {
|
} else if (g_strcmp0(cmd, "AWAY") == 0) {
|
||||||
/* set the away reason */
|
/* set the away reason */
|
||||||
if (args != NULL) {
|
if (args != NULL) {
|
||||||
g_free(client->server->away_reason);
|
g_free(client->server->away_reason);
|
||||||
@ -347,7 +347,7 @@ static void sig_listen(LISTEN_REC *listen)
|
|||||||
rec->listen = listen;
|
rec->listen = listen;
|
||||||
rec->handle = sendbuf;
|
rec->handle = sendbuf;
|
||||||
rec->host = g_strdup(host);
|
rec->host = g_strdup(host);
|
||||||
if (strcmp(listen->ircnet, "*") == 0) {
|
if (g_strcmp0(listen->ircnet, "*") == 0) {
|
||||||
rec->proxy_address = g_strdup("irc.proxy");
|
rec->proxy_address = g_strdup("irc.proxy");
|
||||||
rec->server = servers == NULL ? NULL : IRC_SERVER(servers->data);
|
rec->server = servers == NULL ? NULL : IRC_SERVER(servers->data);
|
||||||
} else {
|
} else {
|
||||||
@ -415,7 +415,7 @@ static void sig_server_event(IRC_SERVER_REC *server, const char *line,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(event, "event privmsg") == 0 &&
|
if (g_strcmp0(event, "event privmsg") == 0 &&
|
||||||
strstr(args, " :\001") != NULL &&
|
strstr(args, " :\001") != NULL &&
|
||||||
strstr(args, " :\001ACTION") == NULL) {
|
strstr(args, " :\001ACTION") == NULL) {
|
||||||
/* CTCP - either answer ourself or forward it to one client */
|
/* CTCP - either answer ourself or forward it to one client */
|
||||||
@ -435,8 +435,8 @@ static void sig_server_event(IRC_SERVER_REC *server, const char *line,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(event, "event ping") == 0 ||
|
if (g_strcmp0(event, "event ping") == 0 ||
|
||||||
strcmp(event, "event pong") == 0) {
|
g_strcmp0(event, "event pong") == 0) {
|
||||||
/* We want to answer ourself to PINGs and CTCPs.
|
/* We want to answer ourself to PINGs and CTCPs.
|
||||||
Also hide PONGs from clients. */
|
Also hide PONGs from clients. */
|
||||||
g_free(event);
|
g_free(event);
|
||||||
@ -462,7 +462,7 @@ static void event_connected(IRC_SERVER_REC *server)
|
|||||||
CLIENT_REC *rec = tmp->data;
|
CLIENT_REC *rec = tmp->data;
|
||||||
|
|
||||||
if (rec->connected && rec->server == NULL &&
|
if (rec->connected && rec->server == NULL &&
|
||||||
(strcmp(rec->listen->ircnet, "*") == 0 ||
|
(g_strcmp0(rec->listen->ircnet, "*") == 0 ||
|
||||||
(chatnet != NULL &&
|
(chatnet != NULL &&
|
||||||
g_ascii_strcasecmp(chatnet, rec->listen->ircnet) == 0))) {
|
g_ascii_strcasecmp(chatnet, rec->listen->ircnet) == 0))) {
|
||||||
proxy_outdata(rec, ":%s NOTICE %s :Connected to server\n",
|
proxy_outdata(rec, ":%s NOTICE %s :Connected to server\n",
|
||||||
|
@ -105,7 +105,7 @@ void config_node_set_str(CONFIG_REC *rec, CONFIG_NODE *parent, const char *key,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (node != NULL) {
|
if (node != NULL) {
|
||||||
if (strcmp(node->value, value) == 0)
|
if (g_strcmp0(node->value, value) == 0)
|
||||||
return;
|
return;
|
||||||
g_free(node->value);
|
g_free(node->value);
|
||||||
} else {
|
} else {
|
||||||
|
@ -44,7 +44,7 @@ static int print_script_errors;
|
|||||||
static char *perl_args[] = {"", "-e", "0"};
|
static char *perl_args[] = {"", "-e", "0"};
|
||||||
|
|
||||||
#define IS_PERL_SCRIPT(file) \
|
#define IS_PERL_SCRIPT(file) \
|
||||||
(strlen(file) > 3 && strcmp(file+strlen(file)-3, ".pl") == 0)
|
(strlen(file) > 3 && g_strcmp0(file+strlen(file)-3, ".pl") == 0)
|
||||||
|
|
||||||
static void perl_script_destroy_package(PERL_SCRIPT_REC *script)
|
static void perl_script_destroy_package(PERL_SCRIPT_REC *script)
|
||||||
{
|
{
|
||||||
@ -314,7 +314,7 @@ PERL_SCRIPT_REC *perl_script_find(const char *name)
|
|||||||
for (tmp = perl_scripts; tmp != NULL; tmp = tmp->next) {
|
for (tmp = perl_scripts; tmp != NULL; tmp = tmp->next) {
|
||||||
PERL_SCRIPT_REC *rec = tmp->data;
|
PERL_SCRIPT_REC *rec = tmp->data;
|
||||||
|
|
||||||
if (strcmp(rec->name, name) == 0)
|
if (g_strcmp0(rec->name, name) == 0)
|
||||||
return rec;
|
return rec;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -331,7 +331,7 @@ PERL_SCRIPT_REC *perl_script_find_package(const char *package)
|
|||||||
for (tmp = perl_scripts; tmp != NULL; tmp = tmp->next) {
|
for (tmp = perl_scripts; tmp != NULL; tmp = tmp->next) {
|
||||||
PERL_SCRIPT_REC *rec = tmp->data;
|
PERL_SCRIPT_REC *rec = tmp->data;
|
||||||
|
|
||||||
if (strcmp(rec->package, package) == 0)
|
if (g_strcmp0(rec->package, package) == 0)
|
||||||
return rec;
|
return rec;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -170,7 +170,7 @@ static void cmd_load(const char *data, SERVER_REC *server, void *item)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
len = strlen(rootmodule);
|
len = strlen(rootmodule);
|
||||||
if (len > 3 && strcmp(rootmodule + len - 3, ".pl") == 0) {
|
if (len > 3 && g_strcmp0(rootmodule + len - 3, ".pl") == 0) {
|
||||||
/* make /LOAD script.pl work as expected */
|
/* make /LOAD script.pl work as expected */
|
||||||
signal_stop();
|
signal_stop();
|
||||||
cmd_script_load(data);
|
cmd_script_load(data);
|
||||||
|
@ -99,14 +99,14 @@ void perl_signal_args_to_c(
|
|||||||
|
|
||||||
if (!SvOK(arg)) {
|
if (!SvOK(arg)) {
|
||||||
c_arg = NULL;
|
c_arg = NULL;
|
||||||
} else if (strcmp(rec->args[n], "string") == 0) {
|
} else if (g_strcmp0(rec->args[n], "string") == 0) {
|
||||||
c_arg = SvPV_nolen(arg);
|
c_arg = SvPV_nolen(arg);
|
||||||
} else if (strcmp(rec->args[n], "int") == 0) {
|
} else if (g_strcmp0(rec->args[n], "int") == 0) {
|
||||||
c_arg = (void *)SvIV(arg);
|
c_arg = (void *)SvIV(arg);
|
||||||
} else if (strcmp(rec->args[n], "ulongptr") == 0) {
|
} else if (g_strcmp0(rec->args[n], "ulongptr") == 0) {
|
||||||
saved_args[n].v_ulong = SvUV(arg);
|
saved_args[n].v_ulong = SvUV(arg);
|
||||||
c_arg = &saved_args[n].v_ulong;
|
c_arg = &saved_args[n].v_ulong;
|
||||||
} else if (strcmp(rec->args[n], "intptr") == 0) {
|
} else if (g_strcmp0(rec->args[n], "intptr") == 0) {
|
||||||
saved_args[n].v_int = SvIV(SvRV(arg));
|
saved_args[n].v_int = SvIV(SvRV(arg));
|
||||||
c_arg = &saved_args[n].v_int;
|
c_arg = &saved_args[n].v_int;
|
||||||
} else if (strncmp(rec->args[n], "glistptr_", 9) == 0) {
|
} else if (strncmp(rec->args[n], "glistptr_", 9) == 0) {
|
||||||
@ -122,7 +122,7 @@ void perl_signal_args_to_c(
|
|||||||
}
|
}
|
||||||
av = (AV *)t;
|
av = (AV *)t;
|
||||||
|
|
||||||
is_str = strcmp(rec->args[n]+9, "char*") == 0;
|
is_str = g_strcmp0(rec->args[n]+9, "char*") == 0;
|
||||||
|
|
||||||
gl = NULL;
|
gl = NULL;
|
||||||
count = av_len(av) + 1;
|
count = av_len(av) + 1;
|
||||||
@ -181,7 +181,7 @@ void perl_signal_args_to_c(
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(rec->args[n], "intptr") == 0) {
|
if (g_strcmp0(rec->args[n], "intptr") == 0) {
|
||||||
SV *t = SvRV(arg);
|
SV *t = SvRV(arg);
|
||||||
SvIOK_only(t);
|
SvIOK_only(t);
|
||||||
SvIV_set(t, saved_args[n].v_int);
|
SvIV_set(t, saved_args[n].v_int);
|
||||||
@ -192,8 +192,8 @@ void perl_signal_args_to_c(
|
|||||||
AV *av;
|
AV *av;
|
||||||
GList *gl, *tmp;
|
GList *gl, *tmp;
|
||||||
|
|
||||||
is_iobject = strcmp(rec->args[n]+9, "iobject") == 0;
|
is_iobject = g_strcmp0(rec->args[n]+9, "iobject") == 0;
|
||||||
is_str = strcmp(rec->args[n]+9, "char*") == 0;
|
is_str = g_strcmp0(rec->args[n]+9, "char*") == 0;
|
||||||
|
|
||||||
av = (AV *)SvRV(arg);
|
av = (AV *)SvRV(arg);
|
||||||
av_clear(av);
|
av_clear(av);
|
||||||
@ -245,8 +245,8 @@ static void perl_call_signal(PERL_SCRIPT_REC *script, SV *func,
|
|||||||
GList *tmp, **ptr;
|
GList *tmp, **ptr;
|
||||||
int is_iobject, is_str;
|
int is_iobject, is_str;
|
||||||
|
|
||||||
is_iobject = strcmp(rec->args[n]+9, "iobject") == 0;
|
is_iobject = g_strcmp0(rec->args[n]+9, "iobject") == 0;
|
||||||
is_str = strcmp(rec->args[n]+9, "char*") == 0;
|
is_str = g_strcmp0(rec->args[n]+9, "char*") == 0;
|
||||||
av = newAV();
|
av = newAV();
|
||||||
|
|
||||||
ptr = arg;
|
ptr = arg;
|
||||||
@ -258,22 +258,22 @@ static void perl_call_signal(PERL_SCRIPT_REC *script, SV *func,
|
|||||||
}
|
}
|
||||||
|
|
||||||
saved_args[n] = perlarg = newRV_noinc((SV *) av);
|
saved_args[n] = perlarg = newRV_noinc((SV *) av);
|
||||||
} else if (strcmp(rec->args[n], "int") == 0)
|
} else if (g_strcmp0(rec->args[n], "int") == 0)
|
||||||
perlarg = newSViv((IV)arg);
|
perlarg = newSViv((IV)arg);
|
||||||
else if (arg == NULL)
|
else if (arg == NULL)
|
||||||
perlarg = &PL_sv_undef;
|
perlarg = &PL_sv_undef;
|
||||||
else if (strcmp(rec->args[n], "string") == 0)
|
else if (g_strcmp0(rec->args[n], "string") == 0)
|
||||||
perlarg = new_pv(arg);
|
perlarg = new_pv(arg);
|
||||||
else if (strcmp(rec->args[n], "ulongptr") == 0)
|
else if (g_strcmp0(rec->args[n], "ulongptr") == 0)
|
||||||
perlarg = newSViv(*(unsigned long *) arg);
|
perlarg = newSViv(*(unsigned long *) arg);
|
||||||
else if (strcmp(rec->args[n], "intptr") == 0)
|
else if (g_strcmp0(rec->args[n], "intptr") == 0)
|
||||||
saved_args[n] = perlarg = newRV_noinc(newSViv(*(int *) arg));
|
saved_args[n] = perlarg = newRV_noinc(newSViv(*(int *) arg));
|
||||||
else if (strncmp(rec->args[n], "gslist_", 7) == 0) {
|
else if (strncmp(rec->args[n], "gslist_", 7) == 0) {
|
||||||
/* linked list - push as AV */
|
/* linked list - push as AV */
|
||||||
GSList *tmp;
|
GSList *tmp;
|
||||||
int is_iobject;
|
int is_iobject;
|
||||||
|
|
||||||
is_iobject = strcmp(rec->args[n]+7, "iobject") == 0;
|
is_iobject = g_strcmp0(rec->args[n]+7, "iobject") == 0;
|
||||||
av = newAV();
|
av = newAV();
|
||||||
for (tmp = arg; tmp != NULL; tmp = tmp->next) {
|
for (tmp = arg; tmp != NULL; tmp = tmp->next) {
|
||||||
sv = is_iobject ? iobject_bless((SERVER_REC *) tmp->data) :
|
sv = is_iobject ? iobject_bless((SERVER_REC *) tmp->data) :
|
||||||
@ -282,12 +282,12 @@ static void perl_call_signal(PERL_SCRIPT_REC *script, SV *func,
|
|||||||
}
|
}
|
||||||
|
|
||||||
perlarg = newRV_noinc((SV *) av);
|
perlarg = newRV_noinc((SV *) av);
|
||||||
} else if (strcmp(rec->args[n], "iobject") == 0) {
|
} else if (g_strcmp0(rec->args[n], "iobject") == 0) {
|
||||||
/* "irssi object" - any struct that has
|
/* "irssi object" - any struct that has
|
||||||
"int type; int chat_type" as it's first
|
"int type; int chat_type" as it's first
|
||||||
variables (server, channel, ..) */
|
variables (server, channel, ..) */
|
||||||
perlarg = iobject_bless((SERVER_REC *) arg);
|
perlarg = iobject_bless((SERVER_REC *) arg);
|
||||||
} else if (strcmp(rec->args[n], "siobject") == 0) {
|
} else if (g_strcmp0(rec->args[n], "siobject") == 0) {
|
||||||
/* "simple irssi object" - any struct that has
|
/* "simple irssi object" - any struct that has
|
||||||
int type; as it's first variable (dcc) */
|
int type; as it's first variable (dcc) */
|
||||||
perlarg = simple_iobject_bless((SERVER_REC *) arg);
|
perlarg = simple_iobject_bless((SERVER_REC *) arg);
|
||||||
@ -317,7 +317,7 @@ static void perl_call_signal(PERL_SCRIPT_REC *script, SV *func,
|
|||||||
if (saved_args[n] == NULL)
|
if (saved_args[n] == NULL)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (strcmp(rec->args[n], "intptr") == 0) {
|
if (g_strcmp0(rec->args[n], "intptr") == 0) {
|
||||||
int *val = arg;
|
int *val = arg;
|
||||||
*val = SvIV(SvRV(saved_args[n]));
|
*val = SvIV(SvRV(saved_args[n]));
|
||||||
} else if (strncmp(rec->args[n], "glistptr_", 9) == 0) {
|
} else if (strncmp(rec->args[n], "glistptr_", 9) == 0) {
|
||||||
@ -338,7 +338,7 @@ static void perl_call_signal(PERL_SCRIPT_REC *script, SV *func,
|
|||||||
out = g_list_append(out, val);
|
out = g_list_append(out, val);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(rec->args[n]+9, "char*") == 0)
|
if (g_strcmp0(rec->args[n]+9, "char*") == 0)
|
||||||
g_list_foreach(*ret, (GFunc) g_free, NULL);
|
g_list_foreach(*ret, (GFunc) g_free, NULL);
|
||||||
g_list_free(*ret);
|
g_list_free(*ret);
|
||||||
*ret = out;
|
*ret = out;
|
||||||
@ -434,7 +434,7 @@ static void perl_signal_remove_list_one(GSList **siglist, PERL_SIGNAL_REC *rec)
|
|||||||
|
|
||||||
#define sv_func_cmp(f1, f2) \
|
#define sv_func_cmp(f1, f2) \
|
||||||
(f1 == f2 || (SvPOK(f1) && SvPOK(f2) && \
|
(f1 == f2 || (SvPOK(f1) && SvPOK(f2) && \
|
||||||
strcmp(SvPV_nolen(f1), SvPV_nolen(f2)) == 0))
|
g_strcmp0(SvPV_nolen(f1), SvPV_nolen(f2)) == 0))
|
||||||
|
|
||||||
static void perl_signal_remove_list(GSList **list, SV *func)
|
static void perl_signal_remove_list(GSList **list, SV *func)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user