From 16a22394c6eb74b601e28c17ce06b8ee0ffede01 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Thu, 28 Jun 2001 01:05:32 +0000 Subject: [PATCH] What once was ap_ ... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89459 13f79535-47bb-0310-9956-ffa450edef68 --- modules/ssl/ssl_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } -- 2.50.1