]> andersk Git - gssapi-openssh.git/blobdiff - openssh/openbsd-compat/xcrypt.c
merged hpn12v17 to trunk
[gssapi-openssh.git] / openssh / openbsd-compat / xcrypt.c
index c3cea3c8689381e4face6b2eac19b015728b43b1..14899321fe4869f40444a42f8beaaac19b69751b 100644 (file)
 
 #include "includes.h"
 
+#include <sys/types.h>
+#include <unistd.h>
+#include <pwd.h>
+
 # ifdef HAVE_CRYPT_H
 #  include <crypt.h>
 # endif
@@ -93,6 +97,11 @@ shadow_pw(struct passwd *pw)
        if (spw != NULL)
                pw_password = spw->sp_pwdp;
 # endif
+
+#if defined(HAVE_LIBIAF)  &&  !defined(BROKEN_LIBIAF)
+       return(get_iaf_password(pw));
+#endif
+
 # if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW)
        struct passwd_adjunct *spw;
        if (issecure() && (spw = getpwanam(pw->pw_name)) != NULL)
This page took 0.102846 seconds and 4 git commands to generate.