Module: wine Branch: refs/heads/master Commit: 5ede40ab5d665be378c4f6ff7854be7fd375e838 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=5ede40ab5d665be378c4f6ff...
Author: Paul Vriens Paul.Vriens@xs4all.nl Date: Wed Jul 19 12:06:07 2006 +0200
wininet: FTP_FtpRenameFileW expects a LPWININETFTPSESSIONW.
---
dlls/wininet/ftp.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/wininet/ftp.c b/dlls/wininet/ftp.c index 95a186b..c2061fb 100644 --- a/dlls/wininet/ftp.c +++ b/dlls/wininet/ftp.c @@ -1566,7 +1566,7 @@ BOOL WINAPI FtpRenameFileW(HINTERNET hFt } else { - r = FTP_FtpRenameFileW(hFtpSession, lpszSrc, lpszDest); + r = FTP_FtpRenameFileW(lpwfs, lpszSrc, lpszDest); }
lend: