advpack: Make AddDelBackupEntry always return S_OK.
diff --git a/dlls/advpack/files.c b/dlls/advpack/files.c
index 28c6108..fc37839 100644
--- a/dlls/advpack/files.c
+++ b/dlls/advpack/files.c
@@ -47,8 +47,7 @@
* the entries from the INI file.
*
* RETURNS
- * Success: S_OK.
- * Failure: E_FAIL.
+ * S_OK in all cases.
*
* NOTES
* If the INI file does not exist before adding entries to it, the file
@@ -66,7 +65,7 @@
FIXME("(%p, %p, %p, %ld) stub\n", lpcszFileList, lpcszBackupDir,
lpcszBaseName, dwFlags);
- return E_FAIL;
+ return S_OK;
}
/* FIXME: this is only for the local case, X:\ */