comparison libpurple/protocols/msn/oim.c @ 23596:73f61c445827

Commit the changes to oim.h that I forgot last time. Fixes #6343, though khc's commit did too, if only trac noticed.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Wed, 16 Jul 2008 03:53:28 +0000
parents fe2e20ff3345
children 2a4341e3d2da
comparison
equal deleted inserted replaced
23595:fe2e20ff3345 23596:73f61c445827
282 base64_len = strlen(oim_base64); 282 base64_len = strlen(oim_base64);
283 purple_debug_info("msn", "Encoded base64 body:{%s}\n", oim_base64); 283 purple_debug_info("msn", "Encoded base64 body:{%s}\n", oim_base64);
284 284
285 oim_body = g_string_new(NULL); 285 oim_body = g_string_new(NULL);
286 g_string_printf(oim_body, MSN_OIM_MSG_TEMPLATE, 286 g_string_printf(oim_body, MSN_OIM_MSG_TEMPLATE,
287 oim->run_id, oim->send_seq, ""); 287 oim->run_id, oim->send_seq);
288 288
289 #define OIM_LINE_LEN 76 289 #define OIM_LINE_LEN 76
290 while (base64_len > OIM_LINE_LEN) { 290 while (base64_len > OIM_LINE_LEN) {
291 g_string_append_len(oim_body, c, OIM_LINE_LEN); 291 g_string_append_len(oim_body, c, OIM_LINE_LEN);
292 g_string_append_c(oim_body, '\n'); 292 g_string_append_c(oim_body, '\n');