summaryrefslogtreecommitdiff
path: root/test/testsock.c
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-10-11 17:52:27 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-10-11 17:52:27 +0000
commit46716a416391b9edffbed388d5f6aad95a1cca40 (patch)
tree1814d75817283c1aae76fcc6d9a7f5092b08f070 /test/testsock.c
parenta8e15e077be1890c74e99e847ba6b7cb43278d38 (diff)
downloadlibapr-46716a416391b9edffbed388d5f6aad95a1cca40.tar.gz
This finishes the argument swaps. The docs haven't been updated, and
probably won't be for a while yet. These argument orders have been documented in the APR Design doc committed earlier today. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59316 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testsock.c')
-rw-r--r--test/testsock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testsock.c b/test/testsock.c
index 6d182925c..36a623e5f 100644
--- a/test/testsock.c
+++ b/test/testsock.c
@@ -97,10 +97,10 @@ int main(int argc, char *argv[])
args[0] = ap_pstrdup(context, "server");
args[1] = NULL;
- s1 = ap_create_process(context, "./server", args, NULL, attr1, &proc1);
+ s1 = ap_create_process(&proc1, "./server", args, NULL, attr1, context);
args[0] = ap_pstrdup(context, "client");
- s2 = ap_create_process(context, "./client", args, NULL, attr2, &proc2);
+ s2 = ap_create_process(&proc2, "./client", args, NULL, attr2, context);
if (s1 != APR_SUCCESS || s2 != APR_SUCCESS) {
fprintf(stderr, "Problem spawning new process\n");