Nikolay Sivov : qmgr: Make SetMaximumDownloadTime() succeed.

Alexandre Julliard julliard at winehq.org
Fri May 8 15:20:32 CDT 2020


Module: wine
Branch: master
Commit: 2f454fa3750c7fcfa4a0898cfeeafe9a842e612b
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=2f454fa3750c7fcfa4a0898cfeeafe9a842e612b

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Fri May  8 15:40:22 2020 +0300

qmgr: Make SetMaximumDownloadTime() succeed.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/qmgr/job.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/qmgr/job.c b/dlls/qmgr/job.c
index 6f2c4d61ca..2ba65cbc29 100644
--- a/dlls/qmgr/job.c
+++ b/dlls/qmgr/job.c
@@ -902,7 +902,7 @@ static HRESULT WINAPI BackgroundCopyJob_GetOwnerElevationState(IBackgroundCopyJo
 static HRESULT WINAPI BackgroundCopyJob_SetMaximumDownloadTime(IBackgroundCopyJob4 *iface, ULONG timeout)
 {
     FIXME("%p, %u.\n", iface, timeout);
-    return E_NOTIMPL;
+    return S_OK;
 }
 
 static HRESULT WINAPI BackgroundCopyJob_GetMaximumDownloadTime(IBackgroundCopyJob4 *iface, ULONG *timeout)




More information about the wine-cvs mailing list