Displaying 2 results from an estimated 2 matches for "custom_sys_auth_passwd".
Did you mean:
dcustom_sys_auth_passwd
2005 Nov 05
5
[Bug 1113] Add Interix authentication support
http://bugzilla.mindrot.org/show_bug.cgi?id=1113
Summary: Add Interix authentication support
Product: Portable OpenSSH
Version: 4.2p1
Platform: Other
OS/Version: other
Status: NEW
Severity: enhancement
Priority: P2
Component: sshd
AssignedTo: bitbucket at mindrot.org
ReportedBy: tv at
2005 Aug 26
0
Patch for UnixWare 7
...CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
fi
+AC_CHECK_LIB(iaf, ia_openinfo)
### Configure cryptographic random number support
--- openssh/defines.h.old 2005-08-23 17:18:21.000000000 -0700
+++ openssh/defines.h 2005-08-24 16:51:30.367680004 -0700
@@ -688,6 +688,10 @@
# define CUSTOM_SYS_AUTH_PASSWD 1
#endif
+#ifdef UNIXWARE_LONG_PASSWORDS
+# define CUSTOM_SYS_AUTH_PASSWD 1
+#endif
+
/* HP-UX 11.11 */
#ifdef BTMP_FILE
# define _PATH_BTMP BTMP_FILE
--- openssh/includes.h.old 2005-08-23 11:02:30.213506000 -0700
+++ openssh/includes.h 2005-08-24 16:51:30.387680002 -0700
@@ -169,6 +169,10 @@...