]> granicus.if.org Git - apache/commitdiff
What once was ap_ ...
authorWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 28 Jun 2001 01:05:32 +0000 (01:05 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 28 Jun 2001 01:05:32 +0000 (01:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89459 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_util.c

index 272dca05fdd5399163fa0f7ef3062a1add08b665..fd3836e4d9967d39d9298c5469d446b814ba7cda 100644 (file)
@@ -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);
     }