aboutsummaryrefslogtreecommitdiffstats
path: root/src/cfg_utils.c
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2010-07-25 19:34:09 +0400
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2010-07-25 19:34:09 +0400
commit054e575684fe7cc8e4d753b2c460193a21bae6a4 (patch)
tree93c779335d8d20b8b9d98781b7d77105efaabcb4 /src/cfg_utils.c
parent34ae83f0151a3fd31f4c045968defa39a2c40985 (diff)
downloadrspamd-054e575684fe7cc8e4d753b2c460193a21bae6a4.tar.gz
rspamd-054e575684fe7cc8e4d753b2c460193a21bae6a4.zip
* More debug
Diffstat (limited to 'src/cfg_utils.c')
-rw-r--r--src/cfg_utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cfg_utils.c b/src/cfg_utils.c
index 210bbb5f7..1f78b5ca3 100644
--- a/src/cfg_utils.c
+++ b/src/cfg_utils.c
@@ -48,7 +48,7 @@ parse_host_port (const gchar *str, struct in_addr *ina, uint16_t *port)
struct hostent *hent;
unsigned int port_parsed, saved_errno = errno;
- tokens = g_strsplit (str, ":", 0);
+ tokens = g_strsplit_set (str, ":", 0);
if (!tokens || !tokens[0]) {
return FALSE;
}
@@ -437,7 +437,7 @@ parse_filters_str (struct config_file *cfg, const gchar *str)
return;
}
- strvec = g_strsplit (str, ",", 0);
+ strvec = g_strsplit_set (str, ",", 0);
if (strvec == NULL) {
return;
}