aboutsummaryrefslogtreecommitdiffstats
path: root/irc.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2006-04-01 20:18:55 +0200
committerWilmer van der Gaast <wilmer@gaast.net>2006-04-01 20:18:55 +0200
commit6adcb6c6bcd96478ec3ab89efcc43bf15d6b12e0 (patch)
tree091cb072b518e52387e316731731ab6f149100cd /irc.c
parente6e1f1815e332f88be3c315f1f8cebf0047721f5 (diff)
Complete fix for #113: a->reconnect does *not* contain a GLib source ID, oops...
Diffstat (limited to 'irc.c')
-rw-r--r--irc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc.c b/irc.c
index f6a1f505..a8d317d0 100644
--- a/irc.c
+++ b/irc.c
@@ -235,7 +235,7 @@ void irc_free(irc_t * irc)
if (account->gc)
account_offline(account->gc);
else if (account->reconnect)
- g_source_remove(account->reconnect);
+ cancel_auto_reconnect(account);
}
g_free(irc->sendbuffer);