Changeset fa29d093 for irc.c


Ignore:
Timestamp:
2007-03-28T05:53:11Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
0da65d5
Parents:
723e611
Message:

Preparing for Jabber conference room support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.c

    r723e611 rfa29d093  
    659659                }
    660660        }
    661         else if( ( c = conv_findchannel( channel ) ) )
     661        else if( ( c = chat_by_channel( channel ) ) )
    662662        {
    663663                GList *l;
     
    812812        else
    813813        {
    814                 struct conversation *c = conv_findchannel( channel );
     814                struct conversation *c = chat_by_channel( channel );
    815815               
    816816                if( c )
     
    950950        if( *nick == '#' || *nick == '&' )
    951951        {
    952                 if( !( c = conv_findchannel( nick ) ) )
     952                if( !( c = chat_by_channel( nick ) ) )
    953953                {
    954954                        irc_reply( irc, 403, "%s :Channel does not exist", nick );
     
    10381038        else if( c && c->gc && c->gc->acc && c->gc->acc->prpl )
    10391039        {
    1040                 return( bim_chat_msg( c->gc, c->id, s ) );
     1040                return( bim_chat_msg( c, s ) );
    10411041        }
    10421042       
Note: See TracChangeset for help on using the changeset viewer.