Mercurial > pidgin.yaz
changeset 22730:97ecc85b6c18
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().
author | Evan Schoenberg <evan.s@dreskin.net> |
---|---|
date | Mon, 28 Apr 2008 20:03:40 +0000 |
parents | 091941836747 |
children | 01e0ddc7e040 |
files | libpurple/protocols/oscar/misc.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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); }