Repository: mesos Updated Branches: refs/heads/master e40379ce6 -> 246ac9768
Changed tabs to spaces in master.cpp. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/246ac976 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/246ac976 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/246ac976 Branch: refs/heads/master Commit: 246ac9768c2ee9db279775a855e58b77c2f2de76 Parents: e40379c Author: Benjamin Mahler <[email protected]> Authored: Fri Mar 21 16:56:29 2014 -0700 Committer: Benjamin Mahler <[email protected]> Committed: Fri Mar 21 16:56:29 2014 -0700 ---------------------------------------------------------------------- src/master/master.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/246ac976/src/master/master.cpp ---------------------------------------------------------------------- diff --git a/src/master/master.cpp b/src/master/master.cpp index 3b28f72..90fd7b5 100644 --- a/src/master/master.cpp +++ b/src/master/master.cpp @@ -291,12 +291,12 @@ void Master::initialize() } else { Try<os::Permissions> permissions = os::permissions(path); if (permissions.isError()) { - LOG(WARNING) << "Failed to stat credentials file '" << path - << "': " << permissions.error(); + LOG(WARNING) << "Failed to stat credentials file '" << path + << "': " << permissions.error(); } else if (permissions.get().others.rwx) { - LOG(WARNING) << "Permissions on credentials file '" << path - << "' are too open. It is recommended that your " - << "credentials file is NOT accessible by others."; + LOG(WARNING) << "Permissions on credentials file '" << path + << "' are too open. It is recommended that your " + << "credentials file is NOT accessible by others."; } foreach (const string& line, strings::tokenize(read.get(), "\n")) {
