diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2008-03-15 17:44:21 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2008-03-15 17:44:21 +0000 |
commit | a869d9147584de96a0ac341416e551953167800f (patch) | |
tree | fb89baa466a507c85a805593eceaa743b21c909a /protocols/yahoo/libyahoo2.c | |
parent | 9ad86bb22e53a40b3ad5bbc57f33d819d2748b0c (diff) |
Indicate that we support YMSG protocol version 12, this should hopefully
keep BitlBee working after 2008-04-02 <http://messenger.yahoo.com/eol>.
Diffstat (limited to 'protocols/yahoo/libyahoo2.c')
-rw-r--r-- | protocols/yahoo/libyahoo2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/yahoo/libyahoo2.c b/protocols/yahoo/libyahoo2.c index ce38bc73..4e93449e 100644 --- a/protocols/yahoo/libyahoo2.c +++ b/protocols/yahoo/libyahoo2.c @@ -736,7 +736,7 @@ static void yahoo_send_packet(struct yahoo_input_data *yid, struct yahoo_packet data = y_new0(unsigned char, len + 1); memcpy(data + pos, "YMSG", 4); pos += 4; - pos += yahoo_put16(data + pos, 0x0a00); + pos += yahoo_put16(data + pos, 0x000c); pos += yahoo_put16(data + pos, 0x0000); pos += yahoo_put16(data + pos, pktlen + extra_pad); pos += yahoo_put16(data + pos, pkt->service); |