0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-03 17:28:18 +02:00

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 5ca543e7c5
commit b90022da01

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)