Update language to comply with Android's inclusive language guidance am: 6431c33594 am: 473c1ec25b am: be0376ca14
Original change: https://android-review.googlesource.com/c/platform/system/update_engine/+/1376396
Change-Id: I2443f384820cc344a5d2b8274b148baf49a2d1e9
diff --git a/omaha_request_action.cc b/omaha_request_action.cc
index e37ebab..95e1250 100644
--- a/omaha_request_action.cc
+++ b/omaha_request_action.cc
@@ -952,10 +952,10 @@
int code = GetHTTPResponseCode();
LOG(ERROR) << "Omaha request network transfer failed with HTTPResponseCode="
<< code;
- // Makes sure we send sane error values.
+ // Makes sure we send proper error values.
if (code < 0 || code >= 1000) {
code = 999;
- LOG(WARNING) << "Converting to sane HTTPResponseCode=" << code;
+ LOG(WARNING) << "Converting to proper HTTPResponseCode=" << code;
}
completer.set_code(static_cast<ErrorCode>(
static_cast<int>(ErrorCode::kOmahaRequestHTTPResponseBase) + code));