summaryrefslogtreecommitdiffstats
path: root/sandbox/linux
diff options
context:
space:
mode:
authoragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-17 17:09:14 +0000
committeragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-17 17:09:14 +0000
commite0f289391c66c1888b6cd5d3f2c05f298a0dd3a0 (patch)
treeefd63f0e2a6c065a5267fbe77723f1e2955e761f /sandbox/linux
parentc8bc4c00eb59d12691368b22ab12e6bb1bf640a5 (diff)
downloadchromium_src-e0f289391c66c1888b6cd5d3f2c05f298a0dd3a0.zip
chromium_src-e0f289391c66c1888b6cd5d3f2c05f298a0dd3a0.tar.gz
chromium_src-e0f289391c66c1888b6cd5d3f2c05f298a0dd3a0.tar.bz2
Linux sandbox: comment typo fix.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20961 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/linux')
-rw-r--r--sandbox/linux/suid/sandbox.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/linux/suid/sandbox.cc b/sandbox/linux/suid/sandbox.cc
index a2332d8..a81ba1a 100644
--- a/sandbox/linux/suid/sandbox.cc
+++ b/sandbox/linux/suid/sandbox.cc
@@ -74,7 +74,7 @@ static int CloneChrootHelperProcess() {
if (pid == 0) {
// We create a temp directory for our chroot. Nobody should ever write into
- // it, so it's root:root 0555.
+ // it, so it's root:root mode 000.
char kTempDirectoryTemplate[] = "/tmp/chrome-sandbox-chroot-XXXXXX";
const char* temp_dir = mkdtemp(kTempDirectoryTemplate);
if (!temp_dir)