comparison src/protocols/msn/dispatch.c @ 6828:cdcb43229e33

[gaim-migrate @ 7373] We were sending the protocol versions string backwards. Fixed. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 14 Sep 2003 01:59:46 +0000
parents b7e113a59b51
children 414c701ef1ff
comparison
equal deleted inserted replaced
6827:1cfbb731aa1f 6828:cdcb43229e33
221 if (dispatch->fd != source) 221 if (dispatch->fd != source)
222 dispatch->fd = source; 222 dispatch->fd = source;
223 223
224 proto_vers[0] = '\0'; 224 proto_vers[0] = '\0';
225 225
226 for (i = session->protocol_ver; i >= 7; i--) 226 for (i = 7; i <= session->protocol_ver; i++)
227 { 227 {
228 char old_buf[256]; 228 char old_buf[256];
229 229
230 strcpy(old_buf, proto_vers); 230 strcpy(old_buf, proto_vers);
231 231