Changeset 51a3d12
- Timestamp:
- 2010-07-25T09:11:48Z (14 years ago)
- Branches:
- master
- Children:
- c6bf805
- Parents:
- 5588edf5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_im.c
r5588edf5 r51a3d12 288 288 irc_user_t *iu = (irc_user_t *) bu->ui_data; 289 289 irc_t *irc = (irc_t *) bee->ui_data; 290 bee_user_flags_t online; 291 292 /* Take the user offline temporarily so we can change the nick (if necessary). */ 293 if( ( online = bu->flags & BEE_USER_ONLINE ) ) 294 bu->flags &= ~BEE_USER_ONLINE; 290 295 291 296 bee_irc_channel_update( irc, NULL, iu ); 292 297 bee_irc_user_nick_update( iu ); 298 299 if( online ) 300 { 301 bu->flags |= online; 302 bee_irc_channel_update( irc, NULL, iu ); 303 } 293 304 294 305 return TRUE; -
irc_send.c
r5588edf5 r51a3d12 396 396 ic->irc->root->user, ic->irc->root->host ); 397 397 398 irc_write( ic->irc, ":%s MODE %s %s", from, ic->name, changes ); 399 } 398 if( *changes ) 399 irc_write( ic->irc, ":%s MODE %s %s", from, ic->name, changes ); 400 }
Note: See TracChangeset
for help on using the changeset viewer.