summaryrefslogtreecommitdiffstats
path: root/src/include/configure.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/configure.in')
-rw-r--r--src/include/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/configure.in b/src/include/configure.in
index 8995d69d7..b50c7e4ba 100644
--- a/src/include/configure.in
+++ b/src/include/configure.in
@@ -57,7 +57,7 @@ if test "$ac_cv_func_getpwnam_r" = yes; then
extern int getpwnam_r();], [1;],
getpwnam_r_returns_int=yes,getpwnam_r_returns_int=no)
AC_TRY_COMPILE([#include <pwd.h>
- extern struct pwd *getpwnam_r();], [1;],
+ extern struct passwd *getpwnam_r();], [1;],
getpwnam_r_returns_ptr=yes,getpwnam_r_returns_ptr=no)
case "$getpwnam_r_returns_int/$getpwnam_r_returns_ptr" in
yes/no) krb5_cv_getpwnam_r_return_type=int ;;