note when the default base is being used (more about ITS#4504)

This commit is contained in:
Pierangelo Masarati 2006-04-25 23:33:51 +00:00
parent 8242166888
commit e8e153e4a8

View File

@ -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"