diff options
author | Günther Deschner <gd@samba.org> | 2006-02-23 14:28:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:10:21 -0500 |
commit | 379bd6865f2fa46ea28024ad2bb2162ccfbb0db7 (patch) | |
tree | e0bac0a82a9c2e5059fb4fbf5af3993da7624658 /source3/include | |
parent | da8846ffef8e5f875e5ff9ce064192280634f490 (diff) | |
download | samba-379bd6865f2fa46ea28024ad2bb2162ccfbb0db7.tar.gz samba-379bd6865f2fa46ea28024ad2bb2162ccfbb0db7.tar.bz2 samba-379bd6865f2fa46ea28024ad2bb2162ccfbb0db7.zip |
r13657: Let winbindd try to obtain the gecos field from the msSFU30Gecos
attribute when "winbind nss info = sfu" is set. Fixes #3539.
Guenther
(This used to be commit ffce0461de130828345c44293e564ca03227607d)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/ads.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/ads.h b/source3/include/ads.h index ce643666ad..a907249036 100644 --- a/source3/include/ads.h +++ b/source3/include/ads.h @@ -48,6 +48,7 @@ typedef struct { char *sfu_shell_attr; char *sfu_uidnumber_attr; char *sfu_gidnumber_attr; + char *sfu_gecos_attr; } schema; } ADS_STRUCT; @@ -99,6 +100,7 @@ typedef void **ADS_MODLIST; #define ADS_ATTR_SFU_GIDNUMBER_OID "1.2.840.113556.1.6.18.1.311" #define ADS_ATTR_SFU_HOMEDIR_OID "1.2.840.113556.1.6.18.1.344" #define ADS_ATTR_SFU_SHELL_OID "1.2.840.113556.1.6.18.1.312" +#define ADS_ATTR_SFU_GECOS_OID "1.2.840.113556.1.6.18.1.337" /* ldap bitwise searches */ #define ADS_LDAP_MATCHING_RULE_BIT_AND "1.2.840.113556.1.4.803" |