- Timestamp:
- 2010-08-23T23:12:24Z (13 years ago)
- Branches:
- master
- Children:
- ad2d8bc
- Parents:
- 237eadd (diff), eb6df6a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
query.c
r237eadd rbe999a5 106 106 int count = 0; 107 107 108 if( !ic ) 109 return; 110 108 111 q = irc->queries; 109 112 def = query_default( irc ); … … 148 151 else 149 152 irc_usermsg( irc, "Accepted: %s", q->question ); 150 q->yes( q->data ); 153 if( q->yes ) 154 q->yes( q->data ); 151 155 } 152 156 else … … 156 160 else 157 161 irc_usermsg( irc, "Rejected: %s", q->question ); 158 q->no( q->data ); 162 if( q->no ) 163 q->no( q->data ); 159 164 } 160 165 q->data = NULL;
Note: See TracChangeset
for help on using the changeset viewer.