Mercurial > pidgin.yaz
changeset 5163:354518ac4e11
[gaim-migrate @ 5527]
Fixes some possible minor firewall "bugaboos."
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Fri, 18 Apr 2003 06:15:05 +0000 |
parents | b8eafeb874a1 |
children | 98d16e2d1bf9 |
files | src/protocols/oscar/oscar.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c Fri Apr 18 03:40:54 2003 +0000 +++ b/src/protocols/oscar/oscar.c Fri Apr 18 06:15:05 2003 +0000 @@ -2235,13 +2235,13 @@ /* Build the file transfer handle */ xfer = gaim_xfer_new(gc->account, GAIM_XFER_RECEIVE, userinfo->sn); - xfer->remote_ip = g_strdup(args->clientip); + xfer->remote_ip = g_strdup(args->verifiedip); xfer->remote_port = args->port; gaim_xfer_set_filename(xfer, args->info.sendfile.filename); gaim_xfer_set_size(xfer, args->info.sendfile.totsize); /* Create the oscar-specific data */ - oft_info = aim_oft_createinfo(od->sess, args->cookie, userinfo->sn, xfer->remote_ip, xfer->remote_port, 0, 0, NULL); + oft_info = aim_oft_createinfo(od->sess, args->cookie, userinfo->sn, args->clientip, xfer->remote_port, 0, 0, NULL); if (args->proxyip) oft_info->proxyip = g_strdup(args->proxyip); if (args->verifiedip)