diff options
Diffstat (limited to 'src/conf_db.c')
-rw-r--r-- | src/conf_db.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_db.c b/src/conf_db.c index 798fd14..5fb74da 100644 --- a/src/conf_db.c +++ b/src/conf_db.c @@ -909,7 +909,7 @@ load_resv_database(void) if (IsChanPrefix(*name)) { - if ((conf = create_channel_resv(name, reason, 0)) == NULL) + if ((conf = create_channel_resv(name, reason)) == NULL) continue; conf->setat = tmp64_setat; @@ -918,7 +918,7 @@ load_resv_database(void) } else { - if ((conf = create_nick_resv(name, reason, 0)) == NULL) + if ((conf = create_nick_resv(name, reason)) == NULL) continue; conf->setat = tmp64_setat; |