From: William A. Rowe Jr Date: Thu, 28 Jun 2001 01:05:32 +0000 (+0000) Subject: What once was ap_ ... X-Git-Tag: 2.0.19~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=16a22394c6eb74b601e28c17ce06b8ee0ffede01;p=apache What once was ap_ ... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89459 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_util.c b/modules/ssl/ssl_util.c index 272dca05fd..fd3836e4d9 100644 --- a/modules/ssl/ssl_util.c +++ b/modules/ssl/ssl_util.c @@ -287,9 +287,9 @@ char *ssl_util_ptxtsub( */ cpResult = apr_pcalloc(p, nResult+1); for (cpI = (char *)cpLine, cpO = cpResult, i = 0; cppMatch[i] != NULL; i++) { - ap_cpystrn(cpO, cpI, cppMatch[i]-cpI+1); + apr_cpystrn(cpO, cpI, cppMatch[i]-cpI+1); cpO += (cppMatch[i]-cpI); - ap_cpystrn(cpO, cpSubst, nSubst+1); + apr_cpystrn(cpO, cpSubst, nSubst+1); cpO += nSubst; cpI = (cppMatch[i]+nMatch); }