diff options
| -rw-r--r-- | nslcd/cfg.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nslcd/cfg.c b/nslcd/cfg.c index 25fb1f2..e3dd418 100644 --- a/nslcd/cfg.c +++ b/nslcd/cfg.c @@ -618,6 +618,9 @@ static const char *print_scope(int scope) case LDAP_SCOPE_SUBTREE: return "sub"; case LDAP_SCOPE_ONELEVEL: return "one"; case LDAP_SCOPE_BASE: return "base"; +#ifdef LDAP_SCOPE_CHILDREN + case LDAP_SCOPE_CHILDREN: return "children"; +#endif /* LDAP_SCOPE_CHILDREN */ default: return "???"; } } |
