Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/jabber.c

    r5bd21df r608f8cf  
    226226        jd->cached_id_prefix = g_strdup_printf( "%s%s", JABBER_CACHED_ID, s );
    227227        g_free( s );
     228       
     229        printf( "%s\n", jd->cached_id_prefix );
    228230}
    229231
     
    270272                return jabber_write( ic, message, strlen( message ) );
    271273       
    272         if( ( s = strchr( who, '=' ) ) && jabber_chat_by_jid( ic, s + 1 ) )
     274        if( ( s = strchr( who, '=' ) ) && jabber_chat_by_name( ic, s + 1 ) )
    273275                bud = jabber_buddy_by_ext_jid( ic, who, 0 );
    274276        else
     
    397399        if( strchr( room, '@' ) == NULL )
    398400                imcb_error( ic, "Invalid room name: %s", room );
    399         else if( jabber_chat_by_jid( ic, room ) )
     401        else if( jabber_chat_by_name( ic, room ) )
    400402                imcb_error( ic, "Already present in chat `%s'", room );
    401403        else
Note: See TracChangeset for help on using the changeset viewer.