diff options
author | Jim Meyering <jim@meyering.net> | 2000-02-09 11:57:55 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-02-09 11:57:55 +0000 |
commit | 40a4ab97fe3a99854df9ad3efe7453f9889f5035 (patch) | |
tree | e1c646d271f0321736f8df792c60c6b673a446ba /m4 | |
parent | 03062f090423a813b56d1a87894a8e0d246d0911 (diff) | |
download | coreutils-40a4ab97fe3a99854df9ad3efe7453f9889f5035.tar.xz |
(jm_LIB_CHECK): Fix typo: check for sp_pwdp in
struct spwd, rather than in struct passwd. Reported by G. Queri.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/lib-check.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/lib-check.m4 b/m4/lib-check.m4 index 5b13f01b3..559dbdd37 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) |