mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 16:49:39 -05:00
Got that logic backwards...
This commit is contained in:
parent
ee05cd8038
commit
16b3111ac7
1 changed files with 2 additions and 2 deletions
|
|
@ -104,7 +104,7 @@ has_children(
|
|||
{
|
||||
struct dbcache *db;
|
||||
Datum key;
|
||||
int rc = 1;
|
||||
int rc = 0;
|
||||
ID_BLOCK *idl;
|
||||
char buf[20];
|
||||
|
||||
|
|
@ -130,7 +130,7 @@ has_children(
|
|||
|
||||
if( idl != NULL ) {
|
||||
idl_free( idl );
|
||||
rc = 0;
|
||||
rc = 1;
|
||||
}
|
||||
|
||||
Debug( LDAP_DEBUG_TRACE, "<= has_children( %lu ): %s\n",
|
||||
|
|
|
|||
Loading…
Reference in a new issue