mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
note when the default base is being used (more about ITS#4504)
This commit is contained in:
parent
8242166888
commit
e8e153e4a8
1 changed files with 3 additions and 2 deletions
|
|
@ -907,8 +907,9 @@ getNextPage:
|
|||
|
||||
printf( "#\n" );
|
||||
printf(_("# LDAPv%d\n"), protocol);
|
||||
printf(_("# base <%s> with scope %s\n"),
|
||||
realbase ? realbase : "(NULL)",
|
||||
printf(_("# base <%s>%s with scope %s\n"),
|
||||
realbase ? realbase : "",
|
||||
( realbase == NULL || realbase != base ) ? " (default)" : "",
|
||||
((scope == LDAP_SCOPE_BASE) ? "baseObject"
|
||||
: ((scope == LDAP_SCOPE_ONELEVEL) ? "oneLevel"
|
||||
: ((scope == LDAP_SCOPE_SUBORDINATE) ? "children"
|
||||
|
|
|
|||
Loading…
Reference in a new issue