summaryrefslogtreecommitdiff
path: root/src/bank-lib/bank_api_history.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-05-15 20:33:02 +0200
committerChristian Grothoff <christian@grothoff.org>2017-05-16 11:05:00 +0200
commitbdfa18830d12ed99fee8d79f48d2ab0ba52c567e (patch)
tree10528edccfdb3290a5259878f744f32f0d6dcf9c /src/bank-lib/bank_api_history.c
parent7c28823cafa0692849deae506e81efdbc07f2ed3 (diff)
downloadexchange-bdfa18830d12ed99fee8d79f48d2ab0ba52c567e.tar.gz
exchange-bdfa18830d12ed99fee8d79f48d2ab0ba52c567e.tar.bz2
exchange-bdfa18830d12ed99fee8d79f48d2ab0ba52c567e.zip
start_row is actually start in the spec, fix naming
Diffstat (limited to 'src/bank-lib/bank_api_history.c')
-rw-r--r--src/bank-lib/bank_api_history.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bank-lib/bank_api_history.c b/src/bank-lib/bank_api_history.c
index 87619e786..e134f20f4 100644
--- a/src/bank-lib/bank_api_history.c
+++ b/src/bank-lib/bank_api_history.c
@@ -273,13 +273,13 @@ TALER_BANK_history (struct GNUNET_CURL_Context *ctx,
{
if (TALER_BANK_DIRECTION_BOTH == direction)
GNUNET_asprintf (&url,
- "/history?auth=basic&account_number=%llu&delta=%lld&start_row=%llu",
+ "/history?auth=basic&account_number=%llu&delta=%lld&start=%llu",
(unsigned long long) account_number,
(long long) num_results,
(unsigned long long) start_row);
else
GNUNET_asprintf (&url,
- "/history?auth=basic&account_number=%llu&delta=%lld&start_row=%llu&direction=%s",
+ "/history?auth=basic&account_number=%llu&delta=%lld&start=%llu&direction=%s",
(unsigned long long) account_number,
(long long) num_results,
(unsigned long long) start_row,