From: Christian Brauner Date: Fri, 5 Mar 2021 09:14:27 +0000 (+0100) Subject: attach_options: fix whitespace error in LXC_ATTACH_NO_NEW_PRIVS X-Git-Tag: lxc-4.0.7~187 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=14eb4531627861d3bc2a629b2b17d43378102980;p=thirdparty%2Flxc.git attach_options: fix whitespace error in LXC_ATTACH_NO_NEW_PRIVS Signed-off-by: Christian Brauner --- diff --git a/src/lxc/attach_options.h b/src/lxc/attach_options.h index 4f9e8cc75..65d95554c 100644 --- a/src/lxc/attach_options.h +++ b/src/lxc/attach_options.h @@ -28,7 +28,7 @@ enum { LXC_ATTACH_REMOUNT_PROC_SYS = 0x00010000, /*!< Remount /proc filesystem */ LXC_ATTACH_LSM_NOW = 0x00020000, /*!< TODO: currently unused */ /* Set PR_SET_NO_NEW_PRIVS to block execve() gainable privileges. */ - LXC_ATTACH_NO_NEW_PRIVS = 0x00040000, /*!< PR_SET_NO_NEW_PRIVS */ + LXC_ATTACH_NO_NEW_PRIVS = 0x00040000, /*!< PR_SET_NO_NEW_PRIVS */ LXC_ATTACH_TERMINAL = 0x00080000, /*!< Allocate new terminal for attached process. */ LXC_ATTACH_LSM_LABEL = 0x00100000, /*!< Set custom LSM label specified in @lsm_label. */ LXC_ATTACH_SETGROUPS = 0x00200000, /*!< Set additional group ids specified in @groups. */