From: Jim Meyering Date: Wed, 9 Feb 2000 11:57:55 +0000 (+0000) Subject: (jm_LIB_CHECK): Fix typo: check for sp_pwdp in X-Git-Tag: FILEUTILS-4_0q~85 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=40a4ab97fe3a99854df9ad3efe7453f9889f5035;p=thirdparty%2Fcoreutils.git (jm_LIB_CHECK): Fix typo: check for sp_pwdp in struct spwd, rather than in struct passwd. Reported by G. Queri. --- diff --git a/m4/lib-check.m4 b/m4/lib-check.m4 index 5b13f01b32..559dbdd374 100644 --- a/m4/lib-check.m4 +++ b/m4/lib-check.m4 @@ -43,7 +43,7 @@ AC_DEFUN(jm_LIB_CHECK, AC_SEARCH_LIBS(getspnam, [shadow sec]) # Requirements for su.c. - AC_CHECK_MEMBERS((struct passwd.sp_pwdp)) + AC_CHECK_MEMBERS((struct spwd.sp_pwdp)) AC_CHECK_FUNCS(getspnam) AC_CHECK_HEADERS(shadow.h)