version 1.125.2.8, 2006/01/23 23:52:17
|
version 1.125.2.9, 2006/12/28 09:34:44
|
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.125.2.7 2006/01/03 22:16:14 kurt Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/filter.c,v 1.125.2.8 2006/01/23 23:52:17 kurt 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 978 get_simple_vrFilter(
|
Line 978 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; |
} |
} |
|
|