Skip to content

Commit

Permalink
[#29] Always use VSS_BT_FULL, even for incremental copies
Browse files Browse the repository at this point in the history
  • Loading branch information
candera committed Jan 1, 2012
1 parent 44b5199 commit 2396569
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion HoboCopy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,8 @@ int _tmain(int argc, _TCHAR* argv[])
}

OutputWriter::WriteLine(TEXT("Calling SetBackupState"));
CHECK_HRESULT(pBackupComponents->SetBackupState(TRUE, FALSE, options.get_BackupType(), FALSE));
// Issue #29: trying to figure out if using VSS_BT_INCREMENTAL causes a problem
CHECK_HRESULT(pBackupComponents->SetBackupState(TRUE, FALSE, VSS_BT_FULL, FALSE));

OutputWriter::WriteLine(TEXT("Calling PrepareForBackup"));
CComPtr<IVssAsync> pPrepareForBackupResults;
Expand Down

0 comments on commit 2396569

Please sign in to comment.