From: Jilles Tjoelker Date: Sun, 6 Jan 2008 14:29:54 +0000 (+0100) Subject: PRIVS: Show name of operator block. X-Git-Tag: charybdis-3.0.0-beta1~311 X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/commitdiff_plain/ff03bfb3d6ccaef1487150e8142ab531b24196fe?ds=sidebyside PRIVS: Show name of operator block. Change the "O" to "operator:". --- diff --git a/extensions/m_privs.c b/extensions/m_privs.c index 2b1f1d5..d005be2 100644 --- a/extensions/m_privs.c +++ b/extensions/m_privs.c @@ -120,7 +120,8 @@ static void show_privs(struct Client *source_p, struct Client *target_p) { if (buf[0] != '\0') strlcat(buf, " ", sizeof buf); - strlcat(buf, "O", sizeof buf); + strlcat(buf, "operator:", sizeof buf); + strlcat(buf, target_p->localClient->opername, sizeof buf); } p = &auth_client_table[0]; while (p->name != NULL)