qmgr: Make credentials stubs return success code.
This commit is contained in:
parent
5570a1da8e
commit
347ab8993b
|
@ -503,7 +503,7 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_SetCredentials(
|
|||
BG_AUTH_CREDENTIALS *cred)
|
||||
{
|
||||
FIXME("Not implemented\n");
|
||||
return E_NOTIMPL;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI BITS_IBackgroundCopyJob_RemoveCredentials(
|
||||
|
@ -512,7 +512,7 @@ static HRESULT WINAPI BITS_IBackgroundCopyJob_RemoveCredentials(
|
|||
BG_AUTH_SCHEME scheme)
|
||||
{
|
||||
FIXME("Not implemented\n");
|
||||
return E_NOTIMPL;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static const IBackgroundCopyJob2Vtbl BITS_IBackgroundCopyJob_Vtbl =
|
||||
|
|
Loading…
Reference in New Issue