Changeset 549545b
- Timestamp:
- 2008-12-13T20:02:55Z (16 years ago)
- Branches:
- master
- Children:
- 6d5eb72
- Parents:
- 77fc000c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
chat.c
r77fc000c r549545b 30 30 struct chat *c, *l; 31 31 set_t *s; 32 33 if( acc->prpl->chat_join == NULL ) 34 return NULL; 32 35 33 36 if( !chat_chanok( channel ) ) … … 178 181 nick = irc->nick; 179 182 180 if( ( gc = c->acc->prpl->chat_join( c->acc->ic, c->handle, nick, password ) ) ) 183 if( c->acc->prpl->chat_join && 184 ( gc = c->acc->prpl->chat_join( c->acc->ic, c->handle, nick, password ) ) ) 181 185 { 182 186 g_free( gc->channel );
Note: See TracChangeset
for help on using the changeset viewer.