diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-26 19:41:13 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-26 19:41:13 +0000 |
commit | 4098cf85d057894dace92ce9a1b0b4ff3f808c3a (patch) | |
tree | 453b151f6d14e9e1414b5c393ce4a0e12dc88e03 /modules | |
parent | a75069a6eba871aeb17809119b319e6e806edffc (diff) |
- Revert -r1925. We no longer show how many times an oline has been hit.
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2948 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules')
-rw-r--r-- | modules/m_challenge.c | 1 | ||||
-rw-r--r-- | modules/m_oper.c | 1 | ||||
-rw-r--r-- | modules/m_stats.c | 4 |
3 files changed, 2 insertions, 4 deletions
diff --git a/modules/m_challenge.c b/modules/m_challenge.c index 78d44fe..524eddc 100644 --- a/modules/m_challenge.c +++ b/modules/m_challenge.c @@ -108,7 +108,6 @@ m_challenge(struct Client *client_p, struct Client *source_p, return 0; } - ++conf->count; oper_up(source_p); ilog(LOG_TYPE_OPER, "OPER %s by %s!%s@%s", diff --git a/modules/m_oper.c b/modules/m_oper.c index 003a342..24a8dac 100644 --- a/modules/m_oper.c +++ b/modules/m_oper.c @@ -124,7 +124,6 @@ m_oper(struct Client *client_p, struct Client *source_p, return 0; } - ++conf->count; oper_up(source_p); ilog(LOG_TYPE_OPER, "OPER %s by %s!%s@%s", diff --git a/modules/m_stats.c b/modules/m_stats.c index 7ca8f0d..fd453fc 100644 --- a/modules/m_stats.c +++ b/modules/m_stats.c @@ -151,12 +151,12 @@ report_confitem_types(struct Client *source_p, enum maskitem_type type) /* Don't allow non opers to see oper privs */ if (HasUMode(source_p, UMODE_OPER)) sendto_one(source_p, form_str(RPL_STATSOLINE), - me.name, source_p->name, 'O', conf->count, conf->user, conf->host, + me.name, source_p->name, 'O', conf->user, conf->host, conf->name, oper_privs_as_string(conf->port), conf->class ? conf->class->name : "<default>"); else sendto_one(source_p, form_str(RPL_STATSOLINE), - me.name, source_p->name, 'O', conf->count, conf->user, conf->host, + me.name, source_p->name, 'O', conf->user, conf->host, conf->name, "0", conf->class ? conf->class->name : "<default>"); } |