James Hawkins : advpack: Make AddDelBackupEntry always return S_OK.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Feb 21 05:04:19 CST 2006


Module: wine
Branch: refs/heads/master
Commit: 7d8f9de83752a5e59bc32f93b9476322a5186b4c
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=7d8f9de83752a5e59bc32f93b9476322a5186b4c

Author: James Hawkins <truiken at gmail.com>
Date:   Mon Feb 20 21:46:19 2006 -0600

advpack: Make AddDelBackupEntry always return S_OK.

---

 dlls/advpack/files.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

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 @@ WINE_DEFAULT_DEBUG_CHANNEL(advpack);
  *                      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 @@ HRESULT WINAPI AddDelBackupEntry(LPCSTR 
     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:\ */




More information about the wine-cvs mailing list