# | Line 1403 | Line 1403 | oper_privs_as_string(const unsigned int | |
---|---|---|
1403 | const char * | |
1404 | get_oper_name(const struct Client *client_p) | |
1405 | { | |
1406 | < | dlink_node *cnode = NULL; |
1406 | > | const dlink_node *cnode = NULL; |
1407 | /* +5 for !,@,{,} and null */ | |
1408 | static char buffer[NICKLEN + USERLEN + HOSTLEN + HOSTLEN + 5]; | |
1409 | ||
# | Line 1411 | Line 1411 | get_oper_name(const struct Client *clien | |
1411 | { | |
1412 | if ((cnode = client_p->localClient->confs.head)) | |
1413 | { | |
1414 | < | struct MaskItem *conf = cnode->data; |
1414 | > | const struct MaskItem *conf = cnode->data; |
1415 | ||
1416 | if (IsConfOperator(conf)) | |
1417 | { |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |