summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-01-21 15:50:11 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2019-01-21 15:50:11 +0100
commit5a889bfcdaad12bb7d6bc8a7916210c6db8c6014 (patch)
treee2eb7d710b357d802825bef4f255e87ceb158744
parentc9eab0f5a5ceca381a330f38bc153b89c3892003 (diff)
downloadexchange-5a889bfcdaad12bb7d6bc8a7916210c6db8c6014.tar.gz
exchange-5a889bfcdaad12bb7d6bc8a7916210c6db8c6014.tar.bz2
exchange-5a889bfcdaad12bb7d6bc8a7916210c6db8c6014.zip
Comment out buggy part
-rw-r--r--src/lib/auditor_api_handle.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/auditor_api_handle.c b/src/lib/auditor_api_handle.c
index aca591dc7..2c33c85ba 100644
--- a/src/lib/auditor_api_handle.c
+++ b/src/lib/auditor_api_handle.c
@@ -433,7 +433,8 @@ MAH_path_to_url2 (const char *base_url,
*
* @param ctx the context
* @param url HTTP base URL for the auditor
- * @param version_cb function to call with the auditor's version information
+ * @param version_cb function to call with the
+ * auditor's version information
* @param version_cb_cls closure for @a version_cb
* @return the auditor handle; NULL upon error
*/
@@ -450,8 +451,10 @@ TALER_AUDITOR_connect (struct GNUNET_CURL_Context *ctx,
auditor->url = GNUNET_strdup (url);
auditor->version_cb = version_cb;
auditor->version_cb_cls = version_cb_cls;
+ #if FIX_CHRISTIAN
auditor->retry_task = GNUNET_SCHEDULER_add_now (&request_version,
auditor);
+ #endif
return auditor;
}
@@ -490,6 +493,7 @@ request_version (void *cls)
curl_easy_setopt (eh,
CURLOPT_HEADERDATA,
vr));
+
vr->job = GNUNET_CURL_job_add (auditor->ctx,
eh,
GNUNET_NO,