Displaying 3 results from an estimated 3 matches for "expire_messag".
Did you mean:
expire_message
2002 Nov 20
0
[PATCH #9] Password expiration via /bin/passwd.
...RCS file: /cvs/openssh/auth.c,v
retrieving revision 1.61
diff -u -r1.61 auth.c
--- auth.c 9 Nov 2002 16:11:12 -0000 1.61
+++ auth.c 20 Nov 2002 13:12:13 -0000
@@ -58,6 +58,12 @@
/* Debugging messages */
Buffer auth_debug;
int auth_debug_init;
+extern int password_change_required;
+extern Buffer expire_message;
+
+#ifdef WITH_AIXAUTHENTICATE
+void aix_remove_embedded_newlines(char *);
+#endif
/*
* Check if the user is allowed to log in via ssh. If user is listed
@@ -75,21 +81,22 @@
const char *hostname = NULL, *ipaddr = NULL;
char *shell;
int i;
-#ifdef WITH_AIXAUTHENTICATE
- char *loginmsg;...
2003 May 12
1
Building Openssh-3.6.1p2 with Darren Tucker's AIX Password Expiry patch
...x43-010414
I am using prngd as my entropy.
My configuration flags are as follows:
--with-prngd-socket=/dev/egd-pool --prefix=/usr/local/openssh
I run into the following errors when I run make:
ld: 0711-317 ERROR: Undefined symbol: .aix_remove_embedded_newlines
ld: 0711-317 ERROR: Undefined symbol: expire_message
ld: 0711-317 ERROR: Undefined symbol: login_message
ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more
information.
collect2: ld returned 8 exit status
make: 1254-004 The error code from the last command is 1.
I am able to compile and use openssh without the patch.
Any ideas?
I a...
2003 Jan 09
7
[Bug 14] Can't change expired /etc/shadow password without PAM
...dtucker at zip.com.au 2003-01-09 23:17 -------
Created an attachment (id=199)
--> (http://bugzilla.mindrot.org/attachment.cgi?id=199&action=view)
Implement password change via /bin/passwd in session.
openssh-passexpire10.patch:
* Implementes shadow and AIX password expiry.
* Adds general expire_message and login_message Buffers to replace
platform-specific variables.
* Implements PasswordExpireWarningDays and ForcedPasswdChange options.
* Uses SIGUSR1 to reset password change flag.
* Net reduction in #ifdefs.
Tested on AIX, Solaris and Redhat.
------- You are receiving this mail because: ---...