Changeset a067771
- Timestamp:
- 2010-05-09T22:08:30Z (15 years ago)
- Branches:
- master
- Children:
- 4c17d19
- Parents:
- 4e608d6
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
irc.h
r4e608d6 ra067771 192 192 irc_control_channel_type_t type; 193 193 struct bee_group *group; 194 struct account *account; 194 195 }; 195 196 -
irc_channel.c
r4e608d6 ra067771 265 265 if( ( icc->group = bee_group_by_name( ic->irc->b, ic->name + 1, FALSE ) ) ) 266 266 icc->type = IRC_CC_TYPE_GROUP; 267 else if( ( icc->account = account_get( ic->irc->b, ic->name + 1 ) ) ) 268 icc->type = IRC_CC_TYPE_ACCOUNT; 267 269 268 270 bee_irc_channel_update( ic->irc, ic, NULL ); -
irc_im.c
r4e608d6 ra067771 145 145 else if( icc->type == IRC_CC_TYPE_GROUP ) 146 146 show = iu->bu->group == icc->group; 147 else if( icc->type == IRC_CC_TYPE_ACCOUNT ) 148 show = iu->bu->ic->acc == icc->account; 147 149 148 150 if( !show )
Note: See TracChangeset
for help on using the changeset viewer.