From 6a4f5c110bc036e03595b9842eaaa837ddbc3a26 Mon Sep 17 00:00:00 2001 From: Robert Swiecki Date: Mon, 17 Dec 2018 08:46:31 +0100 Subject: [PATCH] make indent --- cmdline.cc | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/cmdline.cc b/cmdline.cc index b1cb147..4347e9a 100644 --- a/cmdline.cc +++ b/cmdline.cc @@ -246,9 +246,8 @@ void logParams(nsjconf_t* nsjconf) { uid.is_newidmap ? "true" : "false"); if (uid.outside_id == 0 && nsjconf->clone_newuser) { LOG_W( - "Process will be UID/EUID=0 in the global user namespace, " - "and will have user " - "root-level access to files"); + "Process will be UID/EUID=0 in the global user namespace, and will " + "have user root-level access to files"); } } for (const auto& gid : nsjconf->gids) { @@ -257,9 +256,8 @@ void logParams(nsjconf_t* nsjconf) { gid.is_newidmap ? "true" : "false"); if (gid.outside_id == 0 && nsjconf->clone_newuser) { LOG_W( - "Process will be GID/EGID=0 in the global user namespace, " - "and will have group " - "root-level access to files"); + "Process will be GID/EGID=0 in the global user namespace, and will " + "have group root-level access to files"); } } }