Commit 78ebf523 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

sfc_os: Return success in SRSetRestorePointA/W.

parent 56b4d35d
...@@ -143,13 +143,13 @@ DWORD WINAPI SfcConnectToServer(DWORD unknown) ...@@ -143,13 +143,13 @@ DWORD WINAPI SfcConnectToServer(DWORD unknown)
BOOL WINAPI SRSetRestorePointA(RESTOREPOINTINFOA *restorepoint, STATEMGRSTATUS *status) BOOL WINAPI SRSetRestorePointA(RESTOREPOINTINFOA *restorepoint, STATEMGRSTATUS *status)
{ {
FIXME("%p %p\n", restorepoint, status); FIXME("%p %p\n", restorepoint, status);
status->nStatus = ERROR_SERVICE_DISABLED; status->nStatus = ERROR_SUCCESS;
return FALSE; return FALSE;
} }
BOOL WINAPI SRSetRestorePointW(RESTOREPOINTINFOW *restorepoint, STATEMGRSTATUS *status) BOOL WINAPI SRSetRestorePointW(RESTOREPOINTINFOW *restorepoint, STATEMGRSTATUS *status)
{ {
FIXME("%p %p\n", restorepoint, status); FIXME("%p %p\n", restorepoint, status);
status->nStatus = ERROR_SERVICE_DISABLED; status->nStatus = ERROR_SUCCESS;
return FALSE; return FALSE;
} }
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