diff options
author | Gerald Carter <jerry@samba.org> | 2007-04-04 04:28:28 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:19:09 -0500 |
commit | c1cb6d059b2a8539bc8a05ea4467d136bbb2ff38 (patch) | |
tree | b0eec19b7163a0b4ae2c59cc43bfc461429abd91 | |
parent | a70af6d457fede7f6bec822d4118abe658613d67 (diff) | |
download | samba-c1cb6d059b2a8539bc8a05ea4467d136bbb2ff38.tar.gz samba-c1cb6d059b2a8539bc8a05ea4467d136bbb2ff38.tar.xz samba-c1cb6d059b2a8539bc8a05ea4467d136bbb2ff38.zip |
r22069: BUG 4447: Fix compile failure on AIX 5.2 (patch from William Jojo <jojowil@hvcc.edu>)
-rw-r--r-- | source/nsswitch/winbind_nss_aix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/nsswitch/winbind_nss_aix.c b/source/nsswitch/winbind_nss_aix.c index bc0f252d79b..92d4bee005f 100644 --- a/source/nsswitch/winbind_nss_aix.c +++ b/source/nsswitch/winbind_nss_aix.c @@ -629,8 +629,10 @@ static int wb_aix_user_attrib(const char *key, char *attributes[], if (strcmp(attributes[i], S_ID) == 0) { results[i].attr_un.au_int = pwd->pw_uid; +#ifdef _AIXVERSION_530 } else if (strcmp(attributes[i], S_PGID) == 0) { results[i].attr_un.au_int = pwd->pw_gid; +#endif } else if (strcmp(attributes[i], S_PWD) == 0) { results[i].attr_un.au_char = strdup(pwd->pw_passwd); } else if (strcmp(attributes[i], S_HOME) == 0) { @@ -769,7 +771,9 @@ static attrlist_t **wb_aix_attrlist(void) {S_PGRP, AL_USERATTR, SEC_CHAR}, {S_HOME, AL_USERATTR, SEC_CHAR}, {S_SHELL, AL_USERATTR, SEC_CHAR}, +#ifdef _AIXVERSION_530 {S_PGID, AL_USERATTR, SEC_INT}, +#endif {S_GECOS, AL_USERATTR, SEC_CHAR}, {S_SHELL, AL_USERATTR, SEC_CHAR}, {S_PGRP, AL_USERATTR, SEC_CHAR}, |