diff options
Diffstat (limited to 'pikul.c')
-rw-r--r-- | pikul.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -220,9 +220,12 @@ char *pikul_order(const char *order_number, const char *service, const char *sen break; } curl_easy_setopt(curl, CURLOPT_URL, shipping.url); - if (shipping.post) + if (shipping.post) { curl_easy_setopt(curl, CURLOPT_POSTFIELDS, shipping.post); - else +#ifdef DEBUG + fprintf(stderr, "POST: %s\n", shipping.post); +#endif + } else curl_easy_setopt(curl, CURLOPT_HTTPGET, 1L); shipping.mode = ORDER; curl_easy_perform(curl); |