summaryrefslogtreecommitdiffstats
path: root/adb
diff options
context:
space:
mode:
authorJorge Lucangeli Obes <jorgelo@google.com>2015-11-11 21:55:30 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-11-11 21:55:30 +0000
commitae0f53cf698b76554751c1015596f75c3ca3edcf (patch)
tree269460ff1503bc0e2fb1893533d8211cd24bb8f7 /adb
parent7605a56fbcf5706b6e2892da9d9dc0fd20efb395 (diff)
parentf39c56456d1f9bb910a9bc1187027a75942c8658 (diff)
downloadcore-ae0f53cf698b76554751c1015596f75c3ca3edcf.tar.gz
core-ae0f53cf698b76554751c1015596f75c3ca3edcf.tar.bz2
core-ae0f53cf698b76554751c1015596f75c3ca3edcf.zip
Merge "Fix typo, caps in error messages."
Diffstat (limited to 'adb')
-rw-r--r--adb/daemon/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/adb/daemon/main.cpp b/adb/daemon/main.cpp
index b8d758f10..f4e054e3c 100644
--- a/adb/daemon/main.cpp
+++ b/adb/daemon/main.cpp
@@ -148,7 +148,7 @@ int adbd_main(int server_port) {
AID_SDCARD_R, AID_SDCARD_RW, AID_NET_BW_STATS,
AID_READPROC };
if (setgroups(sizeof(groups) / sizeof(groups[0]), groups) != 0) {
- PLOG(FATAL) << "Could not set supplental groups";
+ PLOG(FATAL) << "Could not set supplemental groups";
}
/* don't listen on a port (default 5037) if running in secure mode */
@@ -168,7 +168,7 @@ int adbd_main(int server_port) {
} else {
if (root_seclabel != nullptr) {
if (setcon(root_seclabel) < 0) {
- LOG(FATAL) << "Could not set selinux context";
+ LOG(FATAL) << "Could not set SELinux context";
}
}
std::string error;