Changeset b5c8a34 for protocols/jabber/jabber.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/jabber.c
r613cc55 rb5c8a34 35 35 #include "base64.h" 36 36 37 GSList *jabber_connections; 38 37 39 static void jabber_init( account_t *acc ) 38 40 { … … 70 72 struct ns_srv_reply *srv = NULL; 71 73 char *connect_to, *s; 74 75 /* For now this is needed in the _connected() handlers if using 76 GLib event handling, to make sure we're not handling events 77 on dead connections. */ 78 jabber_connections = g_slist_prepend( jabber_connections, ic ); 72 79 73 80 jd->ic = ic; … … 263 270 g_free( jd->username ); 264 271 g_free( jd ); 272 273 jabber_connections = g_slist_remove( jabber_connections, ic ); 265 274 } 266 275
Note: See TracChangeset
for help on using the changeset viewer.