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-5.0.0~262^2~1 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=a84c81bfeeb55a14104d9a79a270b9515947c956;p=mirror_lxc.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. */