aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/account.c
diff options
context:
space:
mode:
authorMarius Halden <marius.h@lden.org>2016-04-12 00:37:39 +0200
committerMarius Halden <marius.h@lden.org>2016-05-07 14:31:03 +0200
commit1ce076a9040e9637876832084438af566e025600 (patch)
tree41b8037b196991b2933433c8093a15f07294f4cf /protocols/account.c
parent0f56b8dc9e8ddbec1cf7cacd35a782cbfbd6186c (diff)
Fix some errors created when changing set account to GSList
Diffstat (limited to 'protocols/account.c')
-rw-r--r--protocols/account.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/protocols/account.c b/protocols/account.c
index 6f6ad339..4438ee36 100644
--- a/protocols/account.c
+++ b/protocols/account.c
@@ -191,7 +191,6 @@ char *set_eval_account(set_t *set, char *value)
accounts = g_strsplit(saccount, ",", 0);
for (account = accounts; *account; account++) {
if (g_strcasecmp(*account, old) == 0) {
- fprintf(stderr, "Found\n");
found = TRUE;
g_free(*account);
*account = g_strdup(value);
@@ -203,7 +202,6 @@ char *set_eval_account(set_t *set, char *value)
saccount = g_strjoinv(",", accounts);
g_strfreev(accounts);
- fprintf(stderr, "%s\n", saccount);
set_setstr(&ic->set, "account", saccount);
g_free(saccount);