]> andersk Git - gssapi-openssh.git/blobdiff - openssh/openbsd-compat/xcrypt.c
merged OpenSSH 4.7p1 to trunk
[gssapi-openssh.git] / openssh / openbsd-compat / xcrypt.c
index c3cea3c8689381e4face6b2eac19b015728b43b1..d8636bb398e107da73820616002f014d07d5445c 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
+
+#ifdef USE_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.033289 seconds and 4 git commands to generate.