X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/760ef9e1ea59f448a2ea3dadf1aa100bb56816ba..3c6fb31a4bb6580e3295fdec5d4687eafb487251:/modules/m_testline.c diff --git a/modules/m_testline.c b/modules/m_testline.c index 215f48d..bee4fcc 100644 --- a/modules/m_testline.c +++ b/modules/m_testline.c @@ -71,6 +71,8 @@ mo_testline(struct Client *client_p, struct Client *source_p, int parc, const ch int host_mask; int type; int duration; + char *puser, *phost, *reason, *operreason; + char reasonbuf[BUFSIZE]; mask = LOCAL_COPY(parv[1]); @@ -129,12 +131,15 @@ mo_testline(struct Client *client_p, struct Client *source_p, int parc, const ch if(aconf && aconf->status & CONF_DLINE) { + get_printable_kline(source_p, aconf, &phost, &reason, &puser, &operreason); + rb_snprintf(reasonbuf, sizeof(reasonbuf), "%s%s%s", reason, + operreason ? "|" : "", operreason ? operreason : ""); sendto_one(source_p, form_str(RPL_TESTLINE), me.name, source_p->name, (aconf->flags & CONF_FLAGS_TEMPORARY) ? 'd' : 'D', (aconf->flags & CONF_FLAGS_TEMPORARY) ? (long) ((aconf->hold - rb_current_time()) / 60) : 0L, - aconf->host, aconf->passwd); + phost, reasonbuf); return 0; } @@ -178,14 +183,17 @@ mo_testline(struct Client *client_p, struct Client *source_p, int parc, const ch if(aconf->status & CONF_KILL) { + get_printable_kline(source_p, aconf, &phost, &reason, &puser, &operreason); rb_snprintf(buf, sizeof(buf), "%s@%s", - aconf->user, aconf->host); + puser, phost); + rb_snprintf(reasonbuf, sizeof(reasonbuf), "%s%s%s", reason, + operreason ? "|" : "", operreason ? operreason : ""); sendto_one(source_p, form_str(RPL_TESTLINE), me.name, source_p->name, (aconf->flags & CONF_FLAGS_TEMPORARY) ? 'k' : 'K', (aconf->flags & CONF_FLAGS_TEMPORARY) ? (long) ((aconf->hold - rb_current_time()) / 60) : 0L, - buf, aconf->passwd); + buf, reasonbuf); return 0; } }