If a removed resv was temporary, mention this in the server notice.

This agrees with xline.
This commit is contained in:
Jilles Tjoelker 2010-01-09 22:14:53 +01:00
parent 4d9be1a6a3
commit ddbd4a8151
1 changed files with 3 additions and 5 deletions

View File

@ -461,22 +461,20 @@ remove_resv(struct Client *source_p, const char *name)
return;
}
sendto_one_notice(source_p, ":RESV for [%s] is removed", name);
ilog(L_KLINE, "UR %s %s", get_oper_name(source_p), name);
if(!aconf->hold)
{
bandb_del(BANDB_RESV, aconf->host, NULL);
sendto_one_notice(source_p, ":RESV for [%s] is removed", name);
sendto_realops_snomask(SNO_GENERAL, L_ALL,
"%s has removed the RESV for: [%s]",
get_oper_name(source_p), name);
ilog(L_KLINE, "UR %s %s", get_oper_name(source_p), name);
}
else
{
sendto_one_notice(source_p, ":RESV for [%s] is removed", name);
sendto_realops_snomask(SNO_GENERAL, L_ALL,
"%s has removed the RESV for: [%s]",
"%s has removed the temporary RESV for: [%s]",
get_oper_name(source_p), name);
ilog(L_KLINE, "UR %s %s", get_oper_name(source_p), name);
}
del_from_resv_hash(name, aconf);
}