]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak comments + indenting
authorKern Sibbald <kern@sibbald.com>
Wed, 14 Apr 2010 11:04:59 +0000 (13:04 +0200)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 2 Aug 2010 14:50:32 +0000 (16:50 +0200)
bacula/src/filed/job.c
bacula/src/win32/filed/vss.cpp
bacula/src/win32/filed/vss_generic.cpp

index c4b203ecd1350f9a11de75e8e0df7d7a27dea2a4..4a224cd68f9591969de13dece0780ee4c9943ff8 100644 (file)
@@ -1850,8 +1850,7 @@ static int verify_cmd(JCR *jcr)
 #ifdef WIN32_VSS
 static bool vss_restore_init_callback(JCR *jcr, int init_type)
 {
-   switch (init_type)
-   {
+   switch (init_type) {
    case VSS_INIT_RESTORE_AFTER_INIT:
       generate_plugin_event(jcr, bEventVssRestoreLoadComponentMetadata);
       return true;
index 334f24bbc86113f724a4585b3a4475c83722d444..28e0b34fc29807378ae82c1f500592b47d699db4 100644 (file)
@@ -139,7 +139,7 @@ bool VSSClient::InitializeForBackup(JCR *jcr)
 bool VSSClient::InitializeForRestore(JCR *jcr, bool (*VssInitCallback)(JCR *, int))
 {
    m_jcr = jcr;
-   return Initialize(0, TRUE, VssInitCallback);
+   return Initialize(0, true/*=>Restore*/, VssInitCallback);
 }
 
 bool VSSClient::GetShadowPath(const char *szFilePath, char *szShadowPath, int nBuflen)
index 3ab65eec5556cf08ea6733cf402b972343cc8569..fba70a45a6896180819e19ede4f260fed48328d4 100644 (file)
@@ -328,9 +328,12 @@ bool VSSClientGeneric::Initialize(DWORD dwContext, bool bDuringRestore, bool (*V
       }
       // Waits for the async operation to finish and checks the result
       WaitAndCheckForAsyncOperation(pAsync1.p);
-   }
-   else
-   {
+   } else {
+   /*
+    * Initialize for restore
+    */
+
       WCHAR *xml;
       HRESULT hr;
       int fd;