summaryrefslogtreecommitdiff
path: root/test/ab_apr.c
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-10-06 23:04:07 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-10-06 23:04:07 +0000
commitf5383ef10df8f7e2bfe4a1b306389df1ed225983 (patch)
treeac6901c10641ff44d74a7f3bc3d909771994fb50 /test/ab_apr.c
parent0f360f17076bb779520a556f7fb3cb67f0a11c52 (diff)
downloadlibapr-f5383ef10df8f7e2bfe4a1b306389df1ed225983.tar.gz
Bring file_io up to the new parameter order for APR. I have decided to do
these on a directory by directory basis for the rest of APR. I hope to cause fewer problems for other developers by doing it this way. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59274 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/ab_apr.c')
-rw-r--r--test/ab_apr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ab_apr.c b/test/ab_apr.c
index ced7375d6..b34137e92 100644
--- a/test/ab_apr.c
+++ b/test/ab_apr.c
@@ -866,7 +866,7 @@ static int open_postfile(char *pfile)
/* No need to perform stat here, the ap_open will do it for us. */
- ap_get_filesize(postfd, &postlen);
+ ap_get_filesize(&postlen, postfd);
postdata = (char *)malloc(postlen);
if (!postdata) {
printf("Can\'t alloc postfile buffer\n");