search for: login_message

Displaying 3 results from an estimated 3 matches for "login_message".

2002 Nov 20
0
[PATCH #9] Password expiration via /bin/passwd.
...include "buffer.h" +#include "misc.h" #if !defined(USE_PAM) && !defined(HAVE_OSF_SIA) /* Don't need any of these headers for the PAM or SIA cases */ @@ -81,8 +83,10 @@ #endif /* !USE_PAM && !HAVE_OSF_SIA */ extern ServerOptions options; +extern Buffer login_message; +extern int password_change_required; #ifdef WITH_AIXAUTHENTICATE -extern char *aixloginmsg; +void aix_remove_embedded_newlines(char *); #endif /* @@ -149,13 +153,23 @@ #endif #ifdef WITH_AIXAUTHENTICATE authsuccess = (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0);...
2003 May 12
1
Building Openssh-3.6.1p2 with Darren Tucker's AIX Password Expiry patch
...ration 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 am currently not a member of this list so please respo...
2003 Jan 09
7
[Bug 14] Can't change expired /etc/shadow password without PAM
...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: ------- You are on the...