From: Kurt Zeilenga Date: Mon, 26 Apr 2004 23:13:19 +0000 (+0000) Subject: ITS#3115: don't increment argument to TOLOWER macro X-Git-Tag: OPENDLAP_REL_ENG_2_2_MP~423 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5f2497910bd5655869501454ec202b702fe6190b;p=openldap ITS#3115: don't increment argument to TOLOWER macro --- diff --git a/servers/slapd/schema_init.c b/servers/slapd/schema_init.c index 9d020cf36b..1daa99628c 100644 --- a/servers/slapd/schema_init.c +++ b/servers/slapd/schema_init.c @@ -1749,7 +1749,7 @@ IA5StringNormalize( } else if ( casefold ) { /* Most IA5 rules require casefolding */ - *q++ = TOLOWER(*p++); + *q++ = TOLOWER(*p); p++; } else { *q++ = *p++;