comparison src/protocols/msn/msnslp.c @ 8273:f24172f53650

[gaim-migrate @ 8997] This is Scott Lamb's eventloop abstraction patch. If it breaks things, Scott Lamb will be glad to take the punishment. If it doesn't, it should make integration into other event loops easier. Well, no, not easier, harder actually, but it'll be done more appropriately and less hackily.. er, hacky. Is hackily a word? committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 17 Feb 2004 02:17:48 +0000
parents 43803965ef45
children bd16ed85cfc2
comparison
equal deleted inserted replaced
8272:9af78e73f0b2 8273:f24172f53650
334 fopen(gaim_account_get_buddy_icon(account), "rb"); 334 fopen(gaim_account_get_buddy_icon(account), "rb");
335 335
336 if (stat(gaim_account_get_buddy_icon(account), &st) == 0) 336 if (stat(gaim_account_get_buddy_icon(account), &st) == 0)
337 slpsession->remaining_size = st.st_size; 337 slpsession->remaining_size = st.st_size;
338 338
339 slpsession->send_timer = g_timeout_add(10, send_cb, slpsession); 339 slpsession->send_timer = gaim_timeout_add(10, send_cb, slpsession);
340 } 340 }
341 else 341 else
342 return send_error_500(slpsession, call_id, msg); 342 return send_error_500(slpsession, call_id, msg);
343 343
344 return FALSE; 344 return FALSE;