PRIVS: Show name of operator block.

Change the "O" to "operator:<name>".
This commit is contained in:
Jilles Tjoelker 2008-01-06 15:29:54 +01:00
parent 7506208c5c
commit ff03bfb3d6
1 changed files with 2 additions and 1 deletions

View File

@ -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)