mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-04-18 15:20:35 +08:00
Fix Solaris SEGV when base is not specified
This commit is contained in:
parent
d7c0a19aab
commit
5efa571ad2
@ -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…
x
Reference in New Issue
Block a user