diff options
author | Doug MacEachern <dougm@apache.org> | 2001-02-08 08:45:33 +0100 |
---|---|---|
committer | Doug MacEachern <dougm@apache.org> | 2001-02-08 08:45:33 +0100 |
commit | 88d3406f9a35c503b9f0e3f125aacdaa05df9371 (patch) | |
tree | 39470637773d75d2fc514c333a1af2554f92775c /test | |
parent | scoreboard.h says it is extern (and scoreboard.c instantiates it), (diff) | |
download | apache2-88d3406f9a35c503b9f0e3f125aacdaa05df9371.tar.xz apache2-88d3406f9a35c503b9f0e3f125aacdaa05df9371.zip |
renaming various functions for consistency sake
see: http://apr.apache.org/~dougm/apr_rename.pl
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88019 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/test_find.c | 2 | ||||
-rw-r--r-- | test/test_parser.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/test_find.c b/test/test_find.c index 2a3d102a27..e71a531804 100644 --- a/test/test_find.c +++ b/test/test_find.c @@ -45,7 +45,7 @@ int main (void) char line[512]; char tok[512]; - p = apr_init_alloc(); + p = apr_pool_alloc_init(); 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 618e3fbe0a..eef1be45cd 100644 --- a/test/test_parser.c +++ b/test/test_parser.c @@ -46,7 +46,7 @@ int main (void) char *newstr; char instr[512]; - p = apr_init_alloc(); + p = apr_pool_alloc_init(); while (gets(instr)) { printf(" [%s] ==\n", instr); |