From ff03bfb3d6ccaef1487150e8142ab531b24196fe Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Sun, 6 Jan 2008 15:29:54 +0100 Subject: [PATCH] PRIVS: Show name of operator block. Change the "O" to "operator:". --- extensions/m_privs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)