diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2012-12-30 14:12:09 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2012-12-30 14:12:09 +0000 |
commit | 2b9a630fe884822fef6e90b7c8df6287c4ffba5f (patch) | |
tree | 30c6c113ca626d882a1de4eb215e3db9bf919579 /nslcd/ether.c | |
parent | 2a5d37ebc0a5880105b44bab3cac9a2aa6977fe5 (diff) |
remove the ldc_ prefix from struct ldap_config fields
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1887 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nslcd/ether.c')
-rw-r--r-- | nslcd/ether.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nslcd/ether.c b/nslcd/ether.c index bffe150..fc54b6d 100644 --- a/nslcd/ether.c +++ b/nslcd/ether.c @@ -92,10 +92,10 @@ void ether_init(void) /* set up search bases */ if (ether_bases[0] == NULL) for (i = 0; i < NSS_LDAP_CONFIG_MAX_BASES; i++) - ether_bases[i] = nslcd_cfg->ldc_bases[i]; + ether_bases[i] = nslcd_cfg->bases[i]; /* set up scope */ if (ether_scope == LDAP_SCOPE_DEFAULT) - ether_scope = nslcd_cfg->ldc_scope; + ether_scope = nslcd_cfg->scope; /* set up attribute list */ ether_attrs[0] = attmap_ether_cn; ether_attrs[1] = attmap_ether_macAddress; |