summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Bailey <rekkanoryo@rekkanoryo.org>2009-06-27 17:55:24 +0000
committerJohn Bailey <rekkanoryo@rekkanoryo.org>2009-06-27 17:55:24 +0000
commitbc0ebb6be5e3ed64a468fd7301342e6c11dcefc6 (patch)
tree66bb15b926234dbf327cda5b7fbefaf1a5501d62
parent54a6fd7bd5fb719fe0e07280acc31767c0b78dca (diff)
downloadpidgin-bc0ebb6be5e3ed64a468fd7301342e6c11dcefc6.tar.gz
*** Plucked rev f7d214529b031e5f31f560c07fc47d445cf87c92 (sadrul@pidgin.im):
This fixes buddyicon fetches for me.
-rw-r--r--libpurple/protocols/yahoo/yahoo_picture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpurple/protocols/yahoo/yahoo_picture.c b/libpurple/protocols/yahoo/yahoo_picture.c
index 1246d21ac8..83181b9d45 100644
--- a/libpurple/protocols/yahoo/yahoo_picture.c
+++ b/libpurple/protocols/yahoo/yahoo_picture.c
@@ -327,7 +327,7 @@ void yahoo_send_picture_request(PurpleConnection *gc, const char *who)
struct yahoo_packet *pkt;
pkt = yahoo_packet_new(YAHOO_SERVICE_PICTURE, YAHOO_STATUS_AVAILABLE, 0);
- yahoo_packet_hash_str(pkt, 4, purple_connection_get_display_name(gc)); /* me */
+ yahoo_packet_hash_str(pkt, 1, purple_connection_get_display_name(gc)); /* me */
yahoo_packet_hash_str(pkt, 5, who); /* the other guy */
yahoo_packet_hash_str(pkt, 13, "1"); /* 1 = request, 2 = reply */
yahoo_packet_send_and_free(pkt, yd);