diff options
Diffstat (limited to 'modules/m_challenge.c')
-rw-r--r-- | modules/m_challenge.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/m_challenge.c b/modules/m_challenge.c index 3bd4c79..9b7f0d0 100644 --- a/modules/m_challenge.c +++ b/modules/m_challenge.c @@ -105,7 +105,7 @@ m_challenge(struct Client *client_p, struct Client *source_p, sendto_one(source_p, form_str(ERR_NOOPERHOST), me.name, source_p->name); conf = find_exact_name_conf(CONF_OPER, NULL, source_p->localClient->auth_oper, NULL, NULL); failed_challenge_notice(source_p, source_p->localClient->auth_oper, (conf != NULL) ? - "host mismatch" : "no oper {} block"); + "host mismatch" : "no operator {} block"); return 0; } @@ -119,7 +119,7 @@ m_challenge(struct Client *client_p, struct Client *source_p, oper_up(source_p); - ilog(LOG_TYPE_OPER, "OPER %s by %s!%s@%s", + ilog(LOG_TYPE_OPER, "CHALLENGE %s by %s!%s@%s", source_p->localClient->auth_oper, source_p->name, source_p->username, source_p->host); @@ -142,7 +142,7 @@ m_challenge(struct Client *client_p, struct Client *source_p, sendto_one(source_p, form_str(ERR_NOOPERHOST), me.name, source_p->name); conf = find_exact_name_conf(CONF_OPER, NULL, parv[1], NULL, NULL); failed_challenge_notice(source_p, parv[1], (conf != NULL) - ? "host mismatch" : "no oper {} block"); + ? "host mismatch" : "no operator {} block"); return 0; } |