From: Dmitry V. Levin Date: Wed, 10 Oct 2012 18:13:07 +0000 (+0000) Subject: pam_unix: fix build in --enable-selinux mode X-Git-Tag: Linux-PAM-1_1_7~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0603b28023ebe44151466bfb33c60687922e0b0b;hp=fbcbb0e302b0c7561e565531b47fba9477b238ba;p=linux-pam pam_unix: fix build in --enable-selinux mode glibc's starting with commit http://sourceware.org/git/?p=glibc.git;a=commitdiff;h=glibc-2.15-231-gd94a467 does not include for POSIX 2008 conformance reasons, so when pam is being built with SELinux support enabled, pam_unix_passwd.c uses getrlimit(2) and therefore should include without relying on other headers. * modules/pam_unix/pam_unix_passwd.c: Include . Reported-by: Guido Trentalancia Reported-by: "Jory A. Pratt" Reported-by: Diego Elio Pettenò --- diff --git a/modules/pam_unix/pam_unix_passwd.c b/modules/pam_unix/pam_unix_passwd.c index 9e1302d5..94bc3ec8 100644 --- a/modules/pam_unix/pam_unix_passwd.c +++ b/modules/pam_unix/pam_unix_passwd.c @@ -58,6 +58,7 @@ #include #include #include +#include #include