Displaying 3 results from an estimated 3 matches for "audit_fail_auth".
2003 Jul 03
0
AIX cleanups: includes and arguments
Hi All.
First the questions:
Is there anything objectionable in this patch?
Is AUDIT_FAIL_AUTH appropriate for the "Reason" field?
Now the details: attached is a patch that changes some of the #includes
for AIX. It moves the AIX-specific includes to port-aix.h and adds
includes that contain the prototypes for many of the authentication
functions. The idea isto fix some warnings...
2003 May 06
1
compilation problems AIX 5.2
I am having difficulties compiling openssh3.6p2 under
AIX 5.2. I grabbed the latest from the contrib
section from openssh.com, applied passexpire19.patch
successfully and configure --prefix=/opt/freeware/
--with xauth=/usr/bin/X11/xauth. i get the following
@ the end of the make:
In file included from auth.c:41:
/usr/include/usersec.h:656: warning: `struct aud_rec'
declared inside parameter
2003 Oct 28
4
AIX patch for openssh-3.7.1p2
...2003
--- openssh-3.7.1p2.patched/openbsd-compat/port-aix.c Mon Sep 22 12:42:00 2003
***************
*** 96,102 ****
--- 96,104 ----
if (geteuid() != 0)
return;
+ #if 0
aix_setauthdb(user);
+ #endif
# ifdef AIX_LOGINFAILED_4ARG
loginfailed((char *)user, hostname, (char *)ttyname, AUDIT_FAIL_AUTH);
# else
*** openssh-3.7.1p2/auth-passwd.c Fri Sep 12 20:41:56 2003
--- openssh-3.7.1p2.patched/auth-passwd.c Mon Sep 22 12:24:15 2003
***************
*** 110,116 ****
--- 110,118 ----
pw->pw_name, authmsg);
/* No pty yet, so just label the line as "ssh" */
+ #i...