summaryrefslogtreecommitdiff
path: root/modules/m_resv.c
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2012-11-10 19:27:13 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2012-11-10 19:27:13 +0000
commitcdb16f35bef2e73b52d4ba402d5b07c890d14be8 (patch)
tree0037ea63a03b198a84ca147296b8f7c8ca2f0838 /modules/m_resv.c
parent068f769876940baf8e76c9597e8ee5c0f73c48bc (diff)
- minor MaskItem structure cleanup
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1649 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules/m_resv.c')
-rw-r--r--modules/m_resv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/m_resv.c b/modules/m_resv.c
index 2fcbf88..1cfd0e4 100644
--- a/modules/m_resv.c
+++ b/modules/m_resv.c
@@ -248,7 +248,7 @@ parse_resv(struct Client *source_p, char *name, int tkline_time, char *reason)
ilog(LOG_TYPE_IRCD, "%s added temporary %d min. RESV for [%s] [%s]",
source_p->name, (int)tkline_time/60,
conf->name, conf->reason);
- conf->hold = CurrentTime + tkline_time;
+ conf->until = CurrentTime + tkline_time;
}
else
{
@@ -309,7 +309,7 @@ parse_resv(struct Client *source_p, char *name, int tkline_time, char *reason)
ilog(LOG_TYPE_IRCD, "%s added temporary %d min. RESV for [%s] [%s]",
source_p->name, (int)tkline_time/60,
conf->name, conf->reason);
- conf->hold = CurrentTime + tkline_time;
+ conf->until = CurrentTime + tkline_time;
}
else
{