version 1.138, 2006/12/26 10:34:33
|
version 1.139, 2006/12/28 09:32:46
|
Line 1
|
Line 1
|
/* filter.c - routines for parsing and dealing with filters */ |
/* filter.c - routines for parsing and dealing with filters */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/filter.c,v 1.137 2006/12/26 03:51:08 hyc Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/filter.c,v 1.138 2006/12/26 10:34:33 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 1998-2006 The OpenLDAP Foundation. |
* Copyright 1998-2006 The OpenLDAP Foundation. |
Line 1001 get_simple_vrFilter(
|
Line 1001 get_simple_vrFilter(
|
} |
} |
|
|
if ( err == LDAP_SUCCESS ) { |
if ( err == LDAP_SUCCESS ) { |
*filt = ch_malloc( sizeof vrf ); |
*filt = op->o_tmpalloc( sizeof vrf, op->o_tmpmemctx ); |
**filt = vrf; |
**filt = vrf; |
} |
} |
|
|