Displaying 2 results from an estimated 2 matches for "with_aix_authenticate".
2010 Jun 03
10
[Bug 1774] New: wtmp and lastlog on AIX
https://bugzilla.mindrot.org/show_bug.cgi?id=1774
Summary: wtmp and lastlog on AIX
Product: Portable OpenSSH
Version: 5.5p1
Platform: All
OS/Version: AIX
Status: NEW
Severity: normal
Priority: P2
Component: Build system
AssignedTo: unassigned-bugs at mindrot.org
ReportedBy: defrayable at
2002 Oct 13
1
[PATCH] AIX password expiration
...ng revision 1.6
diff -u -r1.6 port-aix.c
--- openbsd-compat/port-aix.c 7 Jul 2002 02:17:36 -0000 1.6
+++ openbsd-compat/port-aix.c 13 Oct 2002 11:06:28 -0000
@@ -27,6 +27,11 @@
#ifdef _AIX
+#ifdef WITH_AIXAUTHENTICATE
+#include "misc.h"
+int aix_password_change_required=0;
+#endif /* WITH_AIX_AUTHENTICATE */
+
#include <uinfo.h>
#include <../xmalloc.h>
@@ -52,5 +57,53 @@
xfree(cp);
}
-#endif /* _AIX */
+#ifdef WITH_AIXAUTHENTICATE
+/* Remove embedded newlines (if any) */
+void
+aix_remove_embedded_newlines(char *p)
+{
+ for (; *p; p++) {
+ if (*p == '\n')
+ *p = '...