mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-02 13:09:42 -05:00
Fix Solaris SEGV when base is not specified
This commit is contained in:
parent
d7c0a19aab
commit
5efa571ad2
1 changed files with 1 additions and 1 deletions
|
|
@ -1191,7 +1191,7 @@ getNextPage:
|
|||
"# filter%s: %s\n"
|
||||
"# requesting: ",
|
||||
version,
|
||||
base, (scope == LDAP_SCOPE_BASE) ? "base"
|
||||
base ? base : "", (scope == LDAP_SCOPE_BASE) ? "base"
|
||||
: ((scope == LDAP_SCOPE_ONELEVEL) ? "one" : "sub"),
|
||||
infile != NULL ? " pattern" : "",
|
||||
filtpattern );
|
||||
|
|
|
|||
Loading…
Reference in a new issue