version 1.8, 2005/08/24 06:32:03
|
version 1.9, 2005/08/25 04:56:09
|
Line 1
|
Line 1
|
/* valsort.c - sort attribute values */ |
/* valsort.c - sort attribute values */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/overlays/valsort.c,v 1.7 2005/08/24 00:26:55 hyc Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/overlays/valsort.c,v 1.8 2005/08/24 06:32:03 hyc Exp $ */ |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
* |
* |
* Copyright 2005 The OpenLDAP Foundation. |
* Copyright 2005 The OpenLDAP Foundation. |
Line 275 valsort_response( Operation *op, SlapRep
|
Line 275 valsort_response( Operation *op, SlapRep
|
/* We only want search responses */ |
/* We only want search responses */ |
if ( rs->sr_type != REP_SEARCH ) return SLAP_CB_CONTINUE; |
if ( rs->sr_type != REP_SEARCH ) return SLAP_CB_CONTINUE; |
|
|
|
/* If this is a syncrepl response, pass thru unmodified */ |
|
if ( op->o_sync > SLAP_CONTROL_IGNORED ) return SLAP_CB_CONTINUE; |
|
|
on = (slap_overinst *) op->o_bd->bd_info; |
on = (slap_overinst *) op->o_bd->bd_info; |
vi = on->on_bi.bi_private; |
vi = on->on_bi.bi_private; |
|
|