Commit 7d8f9de8 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

advpack: Make AddDelBackupEntry always return S_OK.

parent 60de11c0
...@@ -47,8 +47,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(advpack); ...@@ -47,8 +47,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(advpack);
* the entries from the INI file. * the entries from the INI file.
* *
* RETURNS * RETURNS
* Success: S_OK. * S_OK in all cases.
* Failure: E_FAIL.
* *
* NOTES * NOTES
* If the INI file does not exist before adding entries to it, the file * If the INI file does not exist before adding entries to it, the file
...@@ -66,7 +65,7 @@ HRESULT WINAPI AddDelBackupEntry(LPCSTR lpcszFileList, LPCSTR lpcszBackupDir, ...@@ -66,7 +65,7 @@ HRESULT WINAPI AddDelBackupEntry(LPCSTR lpcszFileList, LPCSTR lpcszBackupDir,
FIXME("(%p, %p, %p, %ld) stub\n", lpcszFileList, lpcszBackupDir, FIXME("(%p, %p, %p, %ld) stub\n", lpcszFileList, lpcszBackupDir,
lpcszBaseName, dwFlags); lpcszBaseName, dwFlags);
return E_FAIL; return S_OK;
} }
/* FIXME: this is only for the local case, X:\ */ /* FIXME: this is only for the local case, X:\ */
......
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