aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2006-06-30 11:17:18 +0200
committerWilmer van der Gaast <wilmer@gaast.net>2006-06-30 11:17:18 +0200
commit5c9512ffa716f2bc8bbf9e2c31ee40624a0ff842 (patch)
treeaabc3b72023844f6177c8f7178b23b16e66340b8 /conf.c
parent171946457cccb7280f0918201093e79bbc9eac72 (diff)
Made set.c API more generic so it's not specific to irc_t structures anymore,
but can be used for account_t structures too, for example.
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf.c b/conf.c
index d8b8be72..13f150a7 100644
--- a/conf.c
+++ b/conf.c
@@ -322,7 +322,7 @@ void conf_loaddefaults( irc_t *irc )
{
if( g_strcasecmp( ini->section, "defaults" ) == 0 )
{
- set_t *s = set_find( irc, ini->key );
+ set_t *s = set_find( &irc->set, ini->key );
if( s )
{