summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_link.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-03-04 12:10:11 +0100
committerChristian Grothoff <christian@grothoff.org>2020-03-04 12:10:11 +0100
commit642992f9c3e9b49ccffd59b8fc4a788e42cc228c (patch)
tree853d82d53407ffa6be91f6fda77a7c2ebfa600fc /src/exchange/taler-exchange-httpd_link.c
parentc6874cdb1b67c98187f762b32f45201e9b014cc3 (diff)
downloadexchange-642992f9c3e9b49ccffd59b8fc4a788e42cc228c.tar.gz
exchange-642992f9c3e9b49ccffd59b8fc4a788e42cc228c.tar.bz2
exchange-642992f9c3e9b49ccffd59b8fc4a788e42cc228c.zip
more renaming
Diffstat (limited to 'src/exchange/taler-exchange-httpd_link.c')
-rw-r--r--src/exchange/taler-exchange-httpd_link.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exchange/taler-exchange-httpd_link.c b/src/exchange/taler-exchange-httpd_link.c
index eaffa5584..8e43bd232 100644
--- a/src/exchange/taler-exchange-httpd_link.c
+++ b/src/exchange/taler-exchange-httpd_link.c
@@ -66,7 +66,7 @@ struct HTD_Context
static void
handle_link_data (void *cls,
const struct TALER_TransferPublicKeyP *transfer_pub,
- const struct TALER_EXCHANGEDB_LinkDataList *ldl)
+ const struct TALER_EXCHANGEDB_LinkList *ldl)
{
struct HTD_Context *ctx = cls;
json_t *list;
@@ -77,7 +77,7 @@ handle_link_data (void *cls,
if (NULL == (list = json_array ()))
goto fail;
- for (const struct TALER_EXCHANGEDB_LinkDataList *pos = ldl;
+ for (const struct TALER_EXCHANGEDB_LinkList *pos = ldl;
NULL != pos;
pos = pos->next)
{