summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2000-08-02 05:27:38 +0000
committerDoug MacEachern <dougm@apache.org>2000-08-02 05:27:38 +0000
commit059d8dd2122f0a3948c2c09549159f0931a6f236 (patch)
tree8a2937938ed4eec31f918c6c8401ce07012cd37a /test
parent3ae78ff3833de9187e9fc0eb6aab69a8b8162c5a (diff)
downloadhttpd-059d8dd2122f0a3948c2c09549159f0931a6f236.tar.gz
prefix libapr functions and types with apr_
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85976 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r--test/test_find.c4
-rw-r--r--test/test_parser.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/test/test_find.c b/test/test_find.c
index 026f98ad18..496168a67d 100644
--- a/test/test_find.c
+++ b/test/test_find.c
@@ -41,11 +41,11 @@ API_EXPORT(void) ap_log_error(const char *file, int line, int level,
int main (void)
{
- ap_pool_t *p;
+ apr_pool_t *p;
char line[512];
char tok[512];
- p = ap_init_alloc();
+ p = apr_init_alloc();
printf("Enter field value to find items within:\n");
if (!gets(line))
diff --git a/test/test_parser.c b/test/test_parser.c
index 70aecbfb1c..440700ad09 100644
--- a/test/test_parser.c
+++ b/test/test_parser.c
@@ -41,12 +41,12 @@ API_EXPORT(void) ap_log_error(const char *file, int line, int level,
int main (void)
{
- ap_pool_t *p;
+ apr_pool_t *p;
const char *field;
char *newstr;
char instr[512];
- p = ap_init_alloc();
+ p = apr_init_alloc();
while (gets(instr)) {
printf(" [%s] ==\n", instr);