diff options
author | Darren Tucker <dtucker@zip.com.au> | 2009-12-21 10:49:21 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2009-12-21 10:49:21 +1100 |
commit | 1bf3503c9d5f0c79a108ea0060bcec3e0efe2b37 (patch) | |
tree | 8821d5df4418bb67f6cf1c4ab5f01a94cf27fcf0 /openbsd-compat/port-aix.h | |
parent | c8802aac28470714ec204d00342f6ecbca45908f (diff) | |
download | openssh-git-1bf3503c9d5f0c79a108ea0060bcec3e0efe2b37.tar.gz |
- (dtucker) [auth-krb5.c platform.{c,h} openbsd-compat/port-aix.{c,h}]
Bug #1583: Use system's kerberos principal name on AIX if it's available.
Based on a patch from and tested by Miguel Sanders.
Diffstat (limited to 'openbsd-compat/port-aix.h')
-rw-r--r-- | openbsd-compat/port-aix.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/openbsd-compat/port-aix.h b/openbsd-compat/port-aix.h index 3ac76ae1..53e4e88a 100644 --- a/openbsd-compat/port-aix.h +++ b/openbsd-compat/port-aix.h @@ -1,4 +1,4 @@ -/* $Id: port-aix.h,v 1.31 2009/08/20 06:20:50 dtucker Exp $ */ +/* $Id: port-aix.h,v 1.32 2009/12/20 23:49:22 dtucker Exp $ */ /* * @@ -95,6 +95,10 @@ int sys_auth_record_login(const char *, const char *, const char *, Buffer *); # define CUSTOM_SYS_AUTH_GET_LASTLOGIN_MSG char *sys_auth_get_lastlogin_msg(const char *, uid_t); # define CUSTOM_FAILED_LOGIN 1 +# if defined(S_AUTHDOMAIN) && defined (S_AUTHNAME) +# define USE_AIX_KRB_NAME +char *aix_krb5_get_principal_name(char *); +# endif #endif void aix_setauthdb(const char *); |