aboutsummaryrefslogtreecommitdiffstats
path: root/irc.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2006-07-15 19:26:13 +0200
committerWilmer van der Gaast <wilmer@gaast.net>2006-07-15 19:26:13 +0200
commit04026d44c29f2b7d64f81bb2d2d061a7d111662f (patch)
treebd4f55e783f4fa55ef9834d19cc60a6bf732bf9e /irc.c
parent89a180978d3e5d81300b82923e8a208ee085d754 (diff)
Fixed a broken call to set_get() (CRASH), shut up a compiler warning in
events_glib and now using the right evaluator for acc->"auto_reconnect".
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 9feb9f4e..fcb59c86 100644
--- a/irc.c
+++ b/irc.c
@@ -623,7 +623,7 @@ void irc_names( irc_t *irc, char *channel )
user_t *u;
char namelist[385] = "";
struct conversation *c = NULL;
- char *ops = set_getstr( irc, "ops" );
+ char *ops = set_getstr( &irc->set, "ops" );
/* RFCs say there is no error reply allowed on NAMES, so when the
channel is invalid, just give an empty reply. */