version 1.36.2.12, 2001/03/15 03:20:03
|
version 1.36.2.13, 2001/10/01 16:53:26
|
Line 1
|
Line 1
|
/* $OpenLDAP: pkg/ldap/libraries/libldap/result.c,v 1.36.2.11 2001/01/17 04:36:27 kurt Exp $ */ |
/* $OpenLDAP: pkg/ldap/libraries/libldap/result.c,v 1.36.2.12 2001/03/15 03:20:03 kurt Exp $ */ |
/* |
/* |
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. |
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. |
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file |
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file |
Line 598 Debug( LDAP_DEBUG_TRACE,
|
Line 598 Debug( LDAP_DEBUG_TRACE,
|
} |
} |
|
|
/* Check if all requests are finished, lr is now parent */ |
/* Check if all requests are finished, lr is now parent */ |
for(tmplr=lr ; tmplr != NULL; tmplr=tmplr->lr_refnext) { |
tmplr = lr; |
|
if (tmplr->lr_status == LDAP_REQST_COMPLETED) { |
|
for(tmplr=lr->lr_child; tmplr != NULL; tmplr=tmplr->lr_refnext) { |
if( tmplr->lr_status != LDAP_REQST_COMPLETED) { |
if( tmplr->lr_status != LDAP_REQST_COMPLETED) { |
break; |
break; |
|
} |
} |
} |
} |
} |
|
|