# HG changeset patch # User Evan Schoenberg # Date 1209413020 0 # Node ID 97ecc85b6c188f814dfa06f00767b7d9eac39478 # Parent 091941836747baa6f8f40ec991dd370b9925bb0b Fixed a mistake I made in 2e791da1 which broke aim_genericreq_l() and aim_genericreq_s() by not passing their ByteStreams to flap_connection_send_snac(). diff -r 091941836747 -r 97ecc85b6c18 libpurple/protocols/oscar/misc.c --- a/libpurple/protocols/oscar/misc.c Mon Apr 28 19:49:52 2008 +0000 +++ b/libpurple/protocols/oscar/misc.c Mon Apr 28 20:03:40 2008 +0000 @@ -74,7 +74,7 @@ byte_stream_put32(&bs, *longdata); - flap_connection_send_snac(od, conn, family, subtype, 0x0000, snacid, NULL); + flap_connection_send_snac(od, conn, family, subtype, 0x0000, snacid, &bs); byte_stream_destroy(&bs); } @@ -97,7 +97,7 @@ byte_stream_put16(&bs, *shortdata); - flap_connection_send_snac(od, conn, family, subtype, 0x0000, snacid, NULL); + flap_connection_send_snac(od, conn, family, subtype, 0x0000, snacid, &bs); byte_stream_destroy(&bs); }