Changeset 803 for trunk/ithildin/modules/ircd/commands/trace.c
- Timestamp:
- 05/31/07 15:15:23 (5 years ago)
- File:
-
- 1 edited
-
trunk/ithildin/modules/ircd/commands/trace.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ithildin/modules/ircd/commands/trace.c
r801 r803 100 100 /* non-operator traces must specify an exact client. other traces might do 101 101 * this too. if you remember we found cp up above. ;) */ 102 if (! OPER(cli) || cp != NULL) {102 if (!CLIENT_OPERATOR(cli) || cp != NULL) { 103 103 if (cp != NULL) { 104 104 /* found a client. Send the info */ 105 if ( OPER(cp))105 if (CLIENT_OPERATOR(cp)) 106 106 sendto_one(cli, RPL_FMT(cli, RPL_TRACEOPERATOR), 107 107 (cp->conn != NULL ? cp->conn->cls->name : "*"), … … 133 133 LIST_FOREACH(connp, ircd.connections.clients, lp) { 134 134 cp = connp->cli; 135 if ( OPER(cp))135 if (CLIENT_OPERATOR(cp)) 136 136 sendto_one(cli, RPL_FMT(cli, RPL_TRACEOPERATOR), connp->cls->name, 137 137 cli->nick, me.now - connp->last);
Note: See TracChangeset
for help on using the changeset viewer.
