comparison src/protocols/yahoo/yahoo_filexfer.c @ 10651:8fbab42659c2

[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 <tailor@pidgin.im>
author Tim Ringenbach <marv@pidgin.im>
date Sat, 05 Mar 2005 18:40:38 +0000
parents 71478e6a6074
children f2e86683cafc
comparison
equal deleted inserted replaced
10650:4f54e273affd 10651:8fbab42659c2
72 } 72 }
73 73
74 xfer->fd = source; 74 xfer->fd = source;
75 gaim_xfer_start(xfer, source, NULL, 0); 75 gaim_xfer_start(xfer, source, NULL, 0);
76 76
77 buf = g_strdup_printf("GET http://%s:%d/%s HTTP/1.0\r\nHost: %s\r\n\r\n", 77 buf = g_strdup_printf("GET /%s HTTP/1.0\r\nHost: %s\r\n\r\n",
78 xd->host, xd->port, xd->path, xd->host); 78 xd->path, xd->host);
79 write(xfer->fd, buf, strlen(buf)); 79 write(xfer->fd, buf, strlen(buf));
80 g_free(buf); 80 g_free(buf);
81 81
82 return; 82 return;
83 } 83 }