diff options
author | Christian Grothoff <christian@grothoff.org> | 2019-02-23 14:47:44 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2019-03-02 19:18:12 +0100 |
commit | 4dea098f54757f618abcfdfd27514bdab281997a (patch) | |
tree | 00da52fef7b03681f75433009b37c56e99689e44 /src/lib/exchange_api_handle.c | |
parent | 3219c14674743302f943c3884e8383de4c4427e6 (diff) |
actually disable 100 continue
Diffstat (limited to 'src/lib/exchange_api_handle.c')
-rw-r--r-- | src/lib/exchange_api_handle.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/exchange_api_handle.c b/src/lib/exchange_api_handle.c index 158afd56f..986bcc4c1 100644 --- a/src/lib/exchange_api_handle.c +++ b/src/lib/exchange_api_handle.c @@ -1740,7 +1740,10 @@ TALER_EXCHANGE_connect TALER_LOG_DEBUG ("Connecting to the exchange (%s)\n", url); - + /* Disable 100 continue processing */ + GNUNET_break (GNUNET_OK == + GNUNET_CURL_append_header (ctx, + "Expect:")); exchange = GNUNET_new (struct TALER_EXCHANGE_Handle); exchange->ctx = ctx; exchange->url = GNUNET_strdup (url); |