Changeset e6cb110
- Timestamp:
- 2008-02-11T20:31:27Z (17 years ago)
- Branches:
- master
- Children:
- d6fdf44
- Parents:
- 3b8e8109
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
query.c
r3b8e8109 re6cb110 144 144 else 145 145 irc_usermsg( irc, "Accepted: %s", q->question ); 146 q->yes( NULL, q->data ); 146 if(q->yes) 147 q->yes( NULL, q->data ); 147 148 } 148 149 else … … 152 153 else 153 154 irc_usermsg( irc, "Rejected: %s", q->question ); 154 q->no( NULL, q->data ); 155 if(q->no) 156 q->no( NULL, q->data ); 155 157 } 156 158 q->data = NULL;
Note: See TracChangeset
for help on using the changeset viewer.