diff options
author | Darren Tucker <dtucker@zip.com.au> | 2003-11-22 14:16:56 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2003-11-22 14:16:56 +1100 |
commit | d76341616dfebd4addc9c9594767ab1832ccb100 (patch) | |
tree | c47fc617084c1c068e065a11b633db595e262fd1 /openbsd-compat/port-aix.h | |
parent | 0eae4422350c4903a23d20b8a5153f939d721428 (diff) | |
download | openssh-git-d76341616dfebd4addc9c9594767ab1832ccb100.tar.gz |
- (dtucker) [auth-passwd.c openbsd-compat/port-aix.c openbsd-compat/port-aix.h]
Move AIX specific password authentication code to port-aix.c, call
authenticate() until reenter flag is clear.
Diffstat (limited to 'openbsd-compat/port-aix.h')
-rw-r--r-- | openbsd-compat/port-aix.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/openbsd-compat/port-aix.h b/openbsd-compat/port-aix.h index b2a48cba..975cdf05 100644 --- a/openbsd-compat/port-aix.h +++ b/openbsd-compat/port-aix.h @@ -1,4 +1,4 @@ -/* $Id: port-aix.h,v 1.15 2003/09/19 10:43:38 dtucker Exp $ */ +/* $Id: port-aix.h,v 1.16 2003/11/22 03:16:57 dtucker Exp $ */ /* * @@ -51,12 +51,14 @@ # include <sys/timers.h> #endif +void aix_usrinfo(struct passwd *); + #ifdef WITH_AIXAUTHENTICATE # define CUSTOM_FAILED_LOGIN 1 void record_failed_login(const char *, const char *); -void aix_setauthdb(const char *); #endif -void aix_usrinfo(struct passwd *); +int aix_authenticate(const char *, const char *, const char *); +void aix_setauthdb(const char *); void aix_remove_embedded_newlines(char *); #endif /* _AIX */ |