diff src/protocols/oscar/icq.c @ 4173:b66f960bfe60

[gaim-migrate @ 4403] So type is actually 1 byte, and not 2. Something about an ass out of u and me. This should make multi-recipient ICQ messages work. It also fixes a little mistake that caused ICQ URLs, auth requests, pager messages, emails, and ICQ cotact sending thingies to not show up. I don't think that bug existed for more than a more days. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 02 Jan 2003 22:22:38 +0000
parents 3468d666d3cc
children 858979ab3867
line wrap: on
line diff
--- a/src/protocols/oscar/icq.c	Thu Jan 02 20:18:25 2003 +0000
+++ b/src/protocols/oscar/icq.c	Thu Jan 02 22:22:38 2003 +0000
@@ -221,7 +221,8 @@
 		msg.day = aimbs_getle8(&qbs);
 		msg.hour = aimbs_getle8(&qbs);
 		msg.minute = aimbs_getle8(&qbs);
-		msg.type = aimbs_getle16(&qbs);
+		msg.type = aimbs_getle8(&qbs);
+		msg.flags = aimbs_getle8(&qbs);
 		msg.msglen = aimbs_getle16(&qbs);
 		msg.msg = aimbs_getstr(&qbs, msg.msglen);