Commit 347ab899 authored by Andrey Turkin's avatar Andrey Turkin Committed by Alexandre Julliard

qmgr: Make credentials stubs return success code.

parent 5570a1da
...@@ -503,7 +503,7 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_SetCredentials( ...@@ -503,7 +503,7 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_SetCredentials(
BG_AUTH_CREDENTIALS *cred) BG_AUTH_CREDENTIALS *cred)
{ {
FIXME("Not implemented\n"); FIXME("Not implemented\n");
return E_NOTIMPL; return S_OK;
} }
static HRESULT WINAPI BITS_IBackgroundCopyJob_RemoveCredentials( static HRESULT WINAPI BITS_IBackgroundCopyJob_RemoveCredentials(
...@@ -512,7 +512,7 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_RemoveCredentials( ...@@ -512,7 +512,7 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_RemoveCredentials(
BG_AUTH_SCHEME scheme) BG_AUTH_SCHEME scheme)
{ {
FIXME("Not implemented\n"); FIXME("Not implemented\n");
return E_NOTIMPL; return S_OK;
} }
static const IBackgroundCopyJob2Vtbl BITS_IBackgroundCopyJob_Vtbl = static const IBackgroundCopyJob2Vtbl BITS_IBackgroundCopyJob_Vtbl =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment