]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/m_resv.c
Pass certfp to other servers and show it in whois. Do not show it on connect.
[irc/rqf/shadowircd.git] / modules / m_resv.c
index 19bcfb6532f896ae1dc67fe4c79b7ed3702182c4..21de7f3dc298c7907f344606a76f071241ed797e 100644 (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);
        }