From: Jarkko Sakkinen Date: Fri, 14 Oct 2011 10:16:24 +0000 (+0300) Subject: Smack: compilation fix X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=16014d87509e26d6ed6935adbbf437a571fb5870;p=linux.git Smack: compilation fix On some build configurations PER_CLEAR_ON_SETID symbol was not found when compiling smack_lsm.c. This patch fixes the issue by explicitly doing #include . Signed-off-by: Jarkko Sakkinen Signed-off-by: Casey Schaufler --- diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c index d55b991268d56..7db62b48eb424 100644 --- a/security/smack/smack_lsm.c +++ b/security/smack/smack_lsm.c @@ -35,6 +35,7 @@ #include #include #include +#include #include "smack.h" #define task_security(task) (task_cred_xxx((task), security))