]> jfr.im git - irc/freenode/ircd-seven.git/commitdiff
Remove duplicated notify_banned_client
authorEd Kellett <redacted>
Sat, 25 Nov 2017 23:54:43 +0000 (23:54 +0000)
committerEd Kellett <redacted>
Tue, 28 Nov 2017 22:11:28 +0000 (22:11 +0000)
extensions/sasl_usercloak.c

index cbdac7b99ec9af3d9a4de271b93b3c698bd46d52..cc4e81aabd16a7dc4fb2f17665692ded49f39ef4 100644 (file)
@@ -22,41 +22,6 @@ mapi_hfn_list_av1 sasl_usercloak_hfnlist[] = {
 DECLARE_MODULE_AV1(sasl_usercloak, NULL, NULL, NULL, NULL,
                        sasl_usercloak_hfnlist, "$Revision: 3526 $");
 
-enum
-{
-       D_LINED,
-       K_LINED
-};
-
-static void
-notify_banned_client(struct Client *client_p, struct ConfItem *aconf, int ban)
-{
-       static const char conn_closed[] = "Connection closed";
-       static const char d_lined[] = "D-lined";
-       static const char k_lined[] = "K-lined";
-       const char *reason = NULL;
-       const char *exit_reason = conn_closed;
-
-       if(ConfigFileEntry.kline_with_reason)
-       {
-               reason = get_user_ban_reason(aconf);
-               exit_reason = reason;
-       }
-       else
-       {
-               reason = aconf->status == D_LINED ? d_lined : k_lined;
-       }
-
-       if(ban == D_LINED && !IsPerson(client_p))
-               sendto_one(client_p, "NOTICE DLINE :*** You have been D-lined");
-       else
-               sendto_one(client_p, form_str(ERR_YOUREBANNEDCREEP),
-                          me.name, client_p->name, reason);
-
-       exit_client(client_p, client_p, &me,
-                       EmptyString(ConfigFileEntry.kline_reason) ? exit_reason :
-                        ConfigFileEntry.kline_reason);
-}
 
 unsigned int fnv_hash_string(char *str)
 {