diff --git a/Changes b/Changes index dab968c4e..e849da988 100644 --- a/Changes +++ b/Changes @@ -386,3 +386,4 @@ - Made some socket errors which normally only showed up in DEBUGMODE, show up in ircd.log as well - Fixed a wrongly outputted message (in hash collision detect) +- Removed aHush, not in use diff --git a/include/struct.h b/include/struct.h index 560de4225..ad67d4f24 100644 --- a/include/struct.h +++ b/include/struct.h @@ -52,7 +52,6 @@ typedef struct t_crline aCRline; typedef struct t_vhline aVHline; typedef struct t_kline aTKline; typedef struct t_vhost aVhost; -typedef struct t_hush aHush; typedef struct SqlineItem aSqlineItem; typedef struct ConfItem aConfItem; @@ -692,15 +691,6 @@ struct t_vhost { aVhost *prev; }; -struct t_hush { - char *nuhmask; - char *setby; - time_t set_at; - time_t expire_at; - aHush *next; - aHush *prev; -}; - /* tkl: * TKL_KILL|TKL_GLOBAL = Global K:Line (G:Line) * TKL_ZAP|TKL_GLOBAL = Global Z:Line (ZLINE) @@ -766,6 +756,7 @@ struct t_vhline { #define LISTENER_REMOTEADMIN 0x000008 #define LISTENER_JAVACLIENT 0x000010 #define LISTENER_MASK 0x000020 + struct Client { struct Client *next, *prev, *hnext; anUser *user; /* ...defined, if this is a User */