Changeset b5c8a34 for protocols/jabber/io.c
- Timestamp:
- 2008-01-24T22:49:47Z (17 years ago)
- Branches:
- master
- Children:
- 764c7d1, f774e01
- Parents:
- 613cc55
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/io.c
r613cc55 rb5c8a34 249 249 struct im_connection *ic = data; 250 250 251 if( g_slist_find( jabber_connections, ic ) == NULL ) 252 return FALSE; 253 251 254 if( source == -1 ) 252 255 { … … 264 267 { 265 268 struct im_connection *ic = data; 266 struct jabber_data *jd = ic->proto_data; 269 struct jabber_data *jd; 270 271 if( g_slist_find( jabber_connections, ic ) == NULL ) 272 return FALSE; 273 274 jd = ic->proto_data; 267 275 268 276 if( source == NULL )
Note: See TracChangeset
for help on using the changeset viewer.