Allow opers to see other users umodes with /mode <nick>.

If the other user is local, the snomask is also shown.
This commit is contained in:
Jilles Tjoelker 2009-01-01 19:24:38 +01:00
parent 29ef4e88c8
commit 3471ceb507
1 changed files with 28 additions and 1 deletions

View File

@ -854,6 +854,30 @@ report_and_set_user_flags(struct Client *source_p, struct ConfItem *aconf)
}
}
static void
show_other_user_mode(struct Client *source_p, struct Client *target_p)
{
int i;
char buf[BUFSIZE];
char *m;
m = buf;
*m++ = '+';
for (i = 0; i < 128; i++) /* >= 127 is extended ascii */
if (target_p->umodes & user_modes[i])
*m++ = (char) i;
*m = '\0';
if (MyConnect(target_p) && target_p->snomask != 0)
sendto_one_notice(source_p, ":Modes for %s are %s %s",
target_p->name, buf,
construct_snobuf(target_p->snomask));
else
sendto_one_notice(source_p, ":Modes for %s are %s",
target_p->name, buf);
}
/*
* user_mode - set get current users mode
*
@ -906,7 +930,10 @@ user_mode(struct Client *client_p, struct Client *source_p, int parc, const char
if(source_p != target_p)
{
sendto_one(source_p, form_str(ERR_USERSDONTMATCH), me.name, source_p->name);
if (MyOper(source_p) && parc < 3)
show_other_user_mode(source_p, target_p);
else
sendto_one(source_p, form_str(ERR_USERSDONTMATCH), me.name, source_p->name);
return 0;
}