Changeset 5bd21df for protocols/jabber/jabber.c
- Timestamp:
- 2007-12-02T17:25:57Z (17 years ago)
- Branches:
- master
- Children:
- fc5d06d
- Parents:
- 911cc4f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/jabber.c
r911cc4f r5bd21df 270 270 return jabber_write( ic, message, strlen( message ) ); 271 271 272 if( ( s = strchr( who, '=' ) ) && jabber_chat_by_ name( ic, s + 1 ) )272 if( ( s = strchr( who, '=' ) ) && jabber_chat_by_jid( ic, s + 1 ) ) 273 273 bud = jabber_buddy_by_ext_jid( ic, who, 0 ); 274 274 else … … 397 397 if( strchr( room, '@' ) == NULL ) 398 398 imcb_error( ic, "Invalid room name: %s", room ); 399 else if( jabber_chat_by_ name( ic, room ) )399 else if( jabber_chat_by_jid( ic, room ) ) 400 400 imcb_error( ic, "Already present in chat `%s'", room ); 401 401 else
Note: See TracChangeset
for help on using the changeset viewer.