- Timestamp:
- 2007-04-06T05:20:31Z (18 years ago)
- Branches:
- master
- Children:
- 552e641
- Parents:
- 0da65d5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
query.c
r0da65d5 raef4828 122 122 123 123 if( count > 0 ) 124 serv_got_crap( ic, "Flushed %d unanswered question(s) for this connection.", count );124 imc_log( ic, "Flushed %d unanswered question(s) for this connection.", count ); 125 125 126 126 q = query_default( irc ); … … 140 140 if( ans ) 141 141 { 142 serv_got_crap( q->ic, "Accepted: %s", q->question );142 imc_log( q->ic, "Accepted: %s", q->question ); 143 143 q->yes( NULL, q->data ); 144 144 } 145 145 else 146 146 { 147 serv_got_crap( q->ic, "Rejected: %s", q->question );147 imc_log( q->ic, "Rejected: %s", q->question ); 148 148 q->no( NULL, q->data ); 149 149 } … … 160 160 if( q->ic ) 161 161 { 162 serv_got_crap( q->ic, "New request: %s\nYou can use the \2yes\2/\2no\2 commands to accept/reject this request.", q->question );162 imc_log( q->ic, "New request: %s\nYou can use the \2yes\2/\2no\2 commands to accept/reject this request.", q->question ); 163 163 } 164 164 else
Note: See TracChangeset
for help on using the changeset viewer.