comparison src/protocols/msn/msn.c @ 7108:6faeeecab0dc

[gaim-migrate @ 7673] Put the rest of util.[ch] into namespaces and sectioned off the functions. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 01 Oct 2003 07:15:53 +0000
parents 7700a28929bd
children bf630f7dfdcd
comparison
equal deleted inserted replaced
7107:9220c7490cd1 7108:6faeeecab0dc
1001 char *send; 1001 char *send;
1002 1002
1003 if (swboard == NULL) 1003 if (swboard == NULL)
1004 return -EINVAL; 1004 return -EINVAL;
1005 1005
1006 send = add_cr(message); 1006 send = gaim_str_add_cr(message);
1007 1007
1008 msg = msn_message_new(); 1008 msg = msn_message_new();
1009 msn_message_set_attr(msg, "X-MMS-IM-Format", "FN=Arial; EF=; CO=0; PF=0"); 1009 msn_message_set_attr(msg, "X-MMS-IM-Format", "FN=Arial; EF=; CO=0; PF=0");
1010 msn_message_set_body(msg, send); 1010 msn_message_set_body(msg, send);
1011 1011