summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 38afa3b4d..c342d14fa 100644
--- a/configure.in
+++ b/configure.in
@@ -829,10 +829,9 @@ AC_CACHE_CHECK([for pw_class field in struct passwd],
829 ac_cv_have_pw_class_in_struct_passwd, [ 829 ac_cv_have_pw_class_in_struct_passwd, [
830 AC_TRY_COMPILE( 830 AC_TRY_COMPILE(
831 [ 831 [
832#include <sys/types.h>
833#include <pwd.h> 832#include <pwd.h>
834 ], 833 ],
835 [ struct passwd p s; p.pw_class = NULL; ], 834 [ struct passwd p; p.pw_class = 0; ],
836 [ ac_cv_have_pw_class_in_struct_passwd="yes" ], 835 [ ac_cv_have_pw_class_in_struct_passwd="yes" ],
837 [ ac_cv_have_pw_class_in_struct_passwd="no" ] 836 [ ac_cv_have_pw_class_in_struct_passwd="no" ]
838 ) 837 )