| Index: omaha_response_handler_action.cc
|
| diff --git a/omaha_response_handler_action.cc b/omaha_response_handler_action.cc
|
| index 486f19b1f925e7488a071cde1a594f26b586a90c..319c825cf7a73f92cb4a4368285d05f71a63e457 100644
|
| --- a/omaha_response_handler_action.cc
|
| +++ b/omaha_response_handler_action.cc
|
| @@ -20,7 +20,7 @@ const string kFullUpdateTag = "_FULL_";
|
| void OmahaResponseHandlerAction::PerformAction() {
|
| CHECK(HasInputObject());
|
| ScopedActionCompleter completer(processor_, this);
|
| - const UpdateCheckResponse& response = GetInputObject();
|
| + const OmahaResponse& response = GetInputObject();
|
| if (!response.update_exists) {
|
| got_no_update_response_ = true;
|
| LOG(INFO) << "There are no updates. Aborting.";
|
| @@ -42,7 +42,7 @@ void OmahaResponseHandlerAction::PerformAction() {
|
| SetOutputObject(install_plan_);
|
| LOG(INFO) << "Using this install plan:";
|
| install_plan_.Dump();
|
| -
|
| +
|
| completer.set_success(true);
|
| }
|
|
|
|
|