From 608de2fd6587fbdf19b8a7a3811fb750820392e3 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Wed, 19 Dec 2001 21:20:46 +0000 Subject: [PATCH] Don't const pointers to structures. --- include/ldap_schema.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/ldap_schema.h b/include/ldap_schema.h index 1dbc6b0647..9b8446a05b 100644 --- a/include/ldap_schema.h +++ b/include/ldap_schema.h @@ -196,23 +196,23 @@ ldap_str2matchingruleuse LDAP_P(( LDAP_F( char * ) ldap_objectclass2str LDAP_P(( - LDAP_CONST LDAPObjectClass * oc )); + LDAPObjectClass * oc )); LDAP_F( char * ) ldap_attributetype2str LDAP_P(( - LDAP_CONST LDAPAttributeType * at )); + LDAPAttributeType * at )); LDAP_F( char * ) ldap_syntax2str LDAP_P(( - LDAP_CONST LDAPSyntax * syn )); + LDAPSyntax * syn )); LDAP_F( char * ) ldap_matchingrule2str LDAP_P(( - LDAP_CONST LDAPMatchingRule * mr )); + LDAPMatchingRule * mr )); LDAP_F( char * ) ldap_matchingruleuse2str LDAP_P(( - LDAP_CONST LDAPMatchingRuleUse * mru )); + LDAPMatchingRuleUse * mru )); LDAP_F( char * ) ldap_scherr2str LDAP_P(( -- 2.39.5