diff options
Diffstat (limited to 'modules/m_resv.c')
-rw-r--r-- | modules/m_resv.c | 4 |
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 { |