diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-08 22:49:49 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-08 22:49:49 +0000 |
commit | 52f8b2069bfe07920defcd03953b11ac088208c3 (patch) | |
tree | 4dd675e25272fbb11d70a392d3643930e7500b2a /content | |
parent | f2dd79405ce25273baaf32c0a5c5cedce91352e7 (diff) | |
download | chromium_src-52f8b2069bfe07920defcd03953b11ac088208c3.zip chromium_src-52f8b2069bfe07920defcd03953b11ac088208c3.tar.gz chromium_src-52f8b2069bfe07920defcd03953b11ac088208c3.tar.bz2 |
Linux: Tweak the SUID sandbox error message.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7851007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100285 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/browser/zygote_host_linux.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/zygote_host_linux.cc b/content/browser/zygote_host_linux.cc index a139b6a..c038efd 100644 --- a/content/browser/zygote_host_linux.cc +++ b/content/browser/zygote_host_linux.cc @@ -141,7 +141,7 @@ void ZygoteHost::Init(const std::string& sandbox_cmd) { LOG(FATAL) << "The SUID sandbox helper binary was found, but is not " "configured correctly. Rather than run without sandboxing " "I'm aborting now. You need to make sure that " - << sandbox_binary_ << " is mode 4755 and owned by root."; + << sandbox_binary_ << " is owned by root and has mode 4755."; } } else { LOG(WARNING) << "Running without the SUID sandbox! See " |