Diff for /servers/slapd/filter.c between versions 1.49 and 1.50

version 1.49, 2000/07/01 02:57:54 version 1.50, 2000/07/02 05:18:55
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.48 2000/06/30 15:09:26 kurt Exp $ */  /* $OpenLDAP: pkg/ldap/servers/slapd/filter.c,v 1.49 2000/07/01 02:57:54 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 696  int escape_value( Line 696  int escape_value(
         assert( in );          assert( in );
         assert( out );          assert( out );
   
         out->bv_val = (char *) ch_malloc( in->bv_len * 3 ) + 1;          out->bv_val = (char *) ch_malloc( ( in->bv_len * 3 ) + 1 );
         out->bv_len = 0;          out->bv_len = 0;
   
 #undef NIBBLE  #undef NIBBLE

Removed from v.1.49  
changed lines
  Added in v.1.50


______________
© Copyright 1998-2020, OpenLDAP Foundation, info@OpenLDAP.org