Displaying 1 result from an estimated 1 matches for "is_aix_password_change_required".
2002 Oct 13
1
[PATCH] AIX password expiration
...==================================
RCS file: /cvs/openssh/session.c,v
retrieving revision 1.222
diff -u -r1.222 session.c
--- session.c 26 Sep 2002 00:38:50 -0000 1.222
+++ session.c 13 Oct 2002 11:06:28 -0000
@@ -104,7 +104,10 @@
Session sessions[MAX_SESSIONS];
#ifdef WITH_AIXAUTHENTICATE
+int is_aix_password_change_required(void);
+void do_aix_change_password(struct passwd *);
char *aixloginmsg;
+char *aixexpiremsg;
#endif /* WITH_AIXAUTHENTICATE */
#ifdef HAVE_LOGIN_CAP
@@ -461,6 +464,12 @@
"TTY available");
#endif /* USE_PAM */
+#ifdef WITH_AIXAUTHENTICATE
+ if (is_aix_password_change_requir...