aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/main.c b/main.c
index 104a381..7a367b0 100644
--- a/main.c
+++ b/main.c
@@ -822,7 +822,7 @@ static int search(const struct http_payload *const p,
*r = (const struct http_response)
{
.step.payload = search_step,
- .step_args = s
+ .args = s
};
s->search.root = s->root.str;
@@ -1014,10 +1014,10 @@ static int check_quota(const unsigned long long len,
static int check_length_step(const unsigned long long len,
const struct http_cookie *const c, struct http_response *const r,
- void *const user, void *const step_args)
+ void *const user, void *const args)
{
int ret = 0;
- struct quota *const q = step_args;
+ struct quota *const q = args;
switch (cftw_step(q->cftw))
{
@@ -1079,7 +1079,7 @@ static int check_length(const unsigned long long len,
*r = (const struct http_response)
{
.step.length = check_length_step,
- .step_args = q
+ .args = q
};
}
@@ -1143,10 +1143,10 @@ end:
}
static int getnode_step(const struct http_payload *const p,
- struct http_response *const r, void *const user, void *const step_args)
+ struct http_response *const r, void *const user, void *const args)
{
int ret = 0;
- struct quota *const q = step_args;
+ struct quota *const q = args;
switch (cftw_step(q->cftw))
{
@@ -1214,7 +1214,7 @@ static int getnode(const struct http_payload *const p,
*r = (const struct http_response)
{
.step.payload = getnode_step,
- .step_args = q
+ .args = q
};
}
else