summaryrefslogtreecommitdiff
path: root/pikul.c
diff options
context:
space:
mode:
Diffstat (limited to 'pikul.c')
-rw-r--r--pikul.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/pikul.c b/pikul.c
index fe43976..c8ac2b5 100644
--- a/pikul.c
+++ b/pikul.c
@@ -73,6 +73,8 @@ struct pikul_services *pikul_services(const char *origin, const char *destinatio
}
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, handler);
+ if (post)
+ curl_easy_setopt(curl, CURLOPT_POSTFIELDS, post);
curl_easy_perform(curl);
if (post)
free(post);
@@ -144,6 +146,8 @@ char *pikul_order(const char *order_number, const char *service, const char *sen
}
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, handler);
+ if (post)
+ curl_easy_setopt(curl, CURLOPT_POSTFIELDS, post);
curl_easy_perform(curl);
if (post)
free(post);