Issue 572 - Minor fixes in compare.c
Summary: Minor fixes in compare.c
Status: VERIFIED FIXED
Alias: None
Product: OpenLDAP
Classification: Unclassified
Component: slapd (show other issues)
Version: unspecified
Hardware: All All
: --- normal
Target Milestone: ---
Assignee: OpenLDAP project
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2000-06-07 09:39 UTC by christian.lorenz@suse.de
Modified: 2014-08-01 21:05 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description christian.lorenz@suse.de 2000-06-07 09:39:02 UTC
Full_Name: Christian Lorenz
Version: 2.0-devel
OS: linux-2.2.14
URL: ftp://ftp.openldap.org/incoming/
Submission from: (NULL) (194.112.123.201)


In pkg/ldap/servers/slapd/compare.c,v 1.41:

--- compare.c.orig  Wed May 31 16:22:31 2000
+++ compare.c   Wed Jun  7 12:05:58 2000
@@ -124,10 +124,10 @@
    ava.aa_value = nvalue;

    Debug( LDAP_DEBUG_ARGS, "do_compare: dn (%s) attr (%s) value (%s)\n",
-       dn, ava.aa_desc->ad_cname, ava.aa_value->bv_val );
+       dn, ava.aa_desc->ad_cname->bv_val, ava.aa_value->bv_val);
 
    Statslog( LDAP_DEBUG_STATS, "conn=%ld op=%d CMP dn=\"%s\" attr=\"%s\"\n",
-       op->o_connid, op->o_opid, dn, ava.aa_desc->ad_cname, 0 );
+       op->o_connid, op->o_opid, dn, ava.aa_desc->ad_cname->bv_val, 0 );
                                
 #else                      
    ava.ava_type = desc.bv_val;

Comment 1 Kurt Zeilenga 2000-06-07 11:01:16 UTC
moved from Incoming to Development
Comment 2 Kurt Zeilenga 2000-06-07 11:03:08 UTC
changed notes
changed state Open to Closed
Comment 3 OpenLDAP project 2014-08-01 21:05:27 UTC
fixed