- Timestamp:
- 2007-04-16T01:03:08Z (16 years ago)
- Branches:
- master
- Children:
- 6bbb939
- Parents:
- c2fb3809
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
query.c
rc2fb3809 r84b045d 122 122 123 123 if( count > 0 ) 124 imc _log( ic, "Flushed %d unanswered question(s) for this connection.", count );124 imcb_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 imc _log( q->ic, "Accepted: %s", q->question );142 imcb_log( q->ic, "Accepted: %s", q->question ); 143 143 q->yes( NULL, q->data ); 144 144 } 145 145 else 146 146 { 147 imc _log( q->ic, "Rejected: %s", q->question );147 imcb_log( q->ic, "Rejected: %s", q->question ); 148 148 q->no( NULL, q->data ); 149 149 } … … 160 160 if( q->ic ) 161 161 { 162 imc _log( q->ic, "New request: %s\nYou can use the \2yes\2/\2no\2 commands to accept/reject this request.", q->question );162 imcb_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.