summaryrefslogtreecommitdiff
path: root/src/lib/exchange_api_handle.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-16 20:36:51 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-16 20:36:51 +0200
commit4fde76049ea383f73ff84f1331dba20180ad80e3 (patch)
treeddaa6099ac15528a6007fc3a9bbcbb68c17ec5ea /src/lib/exchange_api_handle.c
parentb9f1384b528b9257cef3c220a747be1c9df2f028 (diff)
downloadexchange-4fde76049ea383f73ff84f1331dba20180ad80e3.tar.gz
exchange-4fde76049ea383f73ff84f1331dba20180ad80e3.tar.bz2
exchange-4fde76049ea383f73ff84f1331dba20180ad80e3.zip
boolean argument removed in GNUNET_CURL_job_add (#6188)
Diffstat (limited to 'src/lib/exchange_api_handle.c')
-rw-r--r--src/lib/exchange_api_handle.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/lib/exchange_api_handle.c b/src/lib/exchange_api_handle.c
index f2d202559..b12e88a25 100644
--- a/src/lib/exchange_api_handle.c
+++ b/src/lib/exchange_api_handle.c
@@ -2016,11 +2016,10 @@ request_keys (void *cls)
curl_easy_setopt (eh,
CURLOPT_HEADERDATA,
kr));
- kr->job = GNUNET_CURL_job_add (exchange->ctx,
- eh,
- GNUNET_YES,
- &keys_completed_cb,
- kr);
+ kr->job = GNUNET_CURL_job_add_with_ct_json (exchange->ctx,
+ eh,
+ &keys_completed_cb,
+ kr);
exchange->kr = kr;
}