# HG changeset patch # User Tim Ringenbach # Date 1110048038 0 # Node ID 8fbab42659c2063f5e8afef827e509c9cb0c23c3 # Parent 4f54e273affdccc3edec70a51fb02a35010d78c0 [gaim-migrate @ 12176] commit some stuff to head that was already committed to oldstatus because having two trees is twice the fun committer: Tailor Script diff -r 4f54e273affd -r 8fbab42659c2 gaim.apspec.in --- a/gaim.apspec.in Thu Mar 03 01:33:00 2005 +0000 +++ b/gaim.apspec.in Sat Mar 05 18:40:38 2005 +0000 @@ -27,7 +27,7 @@ Gaim is NOT affiliated with or endorsed by AOL. [BuildPrepare] -prepareBuild --enable-nss --enable-gnutls --enable-binreloc --disable-perl --disable-tcl +prepareBuild --enable-nss --enable-gnutls --enable-binreloc --disable-perl --disable-tcl --disable-gtktest [BuildUnprepare] diff -r 4f54e273affd -r 8fbab42659c2 src/protocols/yahoo/yahoo_filexfer.c --- a/src/protocols/yahoo/yahoo_filexfer.c Thu Mar 03 01:33:00 2005 +0000 +++ b/src/protocols/yahoo/yahoo_filexfer.c Sat Mar 05 18:40:38 2005 +0000 @@ -74,8 +74,8 @@ xfer->fd = source; gaim_xfer_start(xfer, source, NULL, 0); - buf = g_strdup_printf("GET http://%s:%d/%s HTTP/1.0\r\nHost: %s\r\n\r\n", - xd->host, xd->port, xd->path, xd->host); + buf = g_strdup_printf("GET /%s HTTP/1.0\r\nHost: %s\r\n\r\n", + xd->path, xd->host); write(xfer->fd, buf, strlen(buf)); g_free(buf); diff -r 4f54e273affd -r 8fbab42659c2 src/protocols/yahoo/yahoo_picture.c --- a/src/protocols/yahoo/yahoo_picture.c Thu Mar 03 01:33:00 2005 +0000 +++ b/src/protocols/yahoo/yahoo_picture.c Sat Mar 05 18:40:38 2005 +0000 @@ -115,7 +115,7 @@ data->gc = gc; data->who = g_strdup(who); data->checksum = checksum; - gaim_url_fetch(url, TRUE, "Mozilla/4.0 (compatible; MSIE 5.0)", FALSE, + gaim_url_fetch(url, FALSE, "Mozilla/4.0 (compatible; MSIE 5.0)", FALSE, yahoo_fetch_picture_cb, data); } else if (who && send_icon_info) { yahoo_send_picture_info(gc, who);