# HG changeset patch # User Eric Warmenhoven # Date 999805622 0 # Node ID 2a09a177ed5fe78c2f12f1e9572600498495cf77 # Parent 7abd9297efac09feacce43c92c9f0637d0bb54d7 [gaim-migrate @ 2236] hopefully this won't break anything committer: Tailor Script diff -r 7abd9297efac -r 2a09a177ed5f src/protocols/msn/msn.c --- a/src/protocols/msn/msn.c Thu Sep 06 16:54:06 2001 +0000 +++ b/src/protocols/msn/msn.c Thu Sep 06 19:47:02 2001 +0000 @@ -947,7 +947,7 @@ return; } - g_snprintf(buf, sizeof(buf), "USR %d MD5 I %s\n", ++md->trId, gc->username); + g_snprintf(buf, sizeof(buf), "VER %d MSNP5\n", ++md->trId); if (msn_write(md->fd, buf, strlen(buf)) < 0) { hide_login_progress(gc, "Unable to talk to Notification Server"); signoff(gc); @@ -978,8 +978,8 @@ g_strchomp(buf); if (!g_strncasecmp(buf, "VER", 3)) { - /* we got VER, check to see that MSNP2 is in the list, then send INF */ - if (!strstr(buf, "MSNP2")) { + /* we got VER, check to see that MSNP5 is in the list, then send INF */ + if (!strstr(buf, "MSNP5")) { hide_login_progress(gc, "Protocol not supported"); signoff(gc); return; @@ -1133,7 +1133,7 @@ return; } - g_snprintf(buf, sizeof(buf), "VER %d MSNP2\n", ++md->trId); + g_snprintf(buf, sizeof(buf), "VER %d MSNP5\n", ++md->trId); if (msn_write(md->fd, buf, strlen(buf)) < 0) { hide_login_progress(gc, "Unable to write to server"); signoff(gc);