Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(786)

Unified Diff: src/platform/update_engine/filesystem_copier_action.cc

Issue 1718001: AU: Class to perform delta updates. (Closed)
Patch Set: fixes for review Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/platform/update_engine/filesystem_copier_action.cc
diff --git a/src/platform/update_engine/filesystem_copier_action.cc b/src/platform/update_engine/filesystem_copier_action.cc
index f9b6869fc8314115539512e08d957b980b7f31ad..2a361eed74c8e6b1bf6cf7672a07a70a1b40387d 100644
--- a/src/platform/update_engine/filesystem_copier_action.cc
+++ b/src/platform/update_engine/filesystem_copier_action.cc
@@ -93,7 +93,7 @@ void FilesystemCopierAction::TerminateProcessing() {
bool FilesystemCopierAction::Mount(const string& device,
const string& mountpoint) {
CHECK(!is_mounted_);
- if(utils::MountFilesystem(device, mountpoint))
+ if(utils::MountFilesystem(device, mountpoint, 0))
is_mounted_ = true;
return is_mounted_;
}

Powered by Google App Engine
This is Rietveld 408576698