diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-04 15:37:10 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-04 15:37:10 +0000 |
commit | 90aeacbf12d63dcd628caed461bd744639603d76 (patch) | |
tree | 5eb5c2aa3fd576ac33d84d2911482a3f200c1bea /modules/m_etrace.c | |
parent | 8daa0e2a6fe61e95dc2dd145ebbdb2b05c097196 (diff) |
- Initial rewrite of the configuration subsystem
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1632 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules/m_etrace.c')
-rw-r--r-- | modules/m_etrace.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/m_etrace.c b/modules/m_etrace.c index 8a3421b..b98d8e3 100644 --- a/modules/m_etrace.c +++ b/modules/m_etrace.c @@ -36,6 +36,7 @@ #include "parse.h" #include "modules.h" #include "conf.h" +#include "conf_class.h" static void report_this_status(struct Client *, struct Client *, int); @@ -142,7 +143,7 @@ report_this_status(struct Client *source_p, struct Client *target_p, const char *class_name; name = get_client_name(target_p, HIDE_IP); - class_name = get_client_class(target_p); + class_name = get_client_class(&target_p->localClient->confs); set_time(); |