# HG changeset patch # User Mark Doliner # Date 1050646505 0 # Node ID 354518ac4e11309eed901ba5e8960a3e79381fa8 # Parent b8eafeb874a11b20d4e475104ebbdc90e70caf7b [gaim-migrate @ 5527] Fixes some possible minor firewall "bugaboos." committer: Tailor Script diff -r b8eafeb874a1 -r 354518ac4e11 src/protocols/oscar/oscar.c --- 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)