diff options
Diffstat (limited to 'src/bank-lib')
-rw-r--r-- | src/bank-lib/bank_api_common.c | 2 | ||||
-rw-r--r-- | src/bank-lib/bank_api_common.h | 2 | ||||
-rw-r--r-- | src/bank-lib/bank_api_history.c | 2 | ||||
-rw-r--r-- | src/bank-lib/fakebank.c | 2 | ||||
-rw-r--r-- | src/bank-lib/test_bank_interpreter.c | 4 |
5 files changed, 6 insertions, 6 deletions
diff --git a/src/bank-lib/bank_api_common.c b/src/bank-lib/bank_api_common.c index b4b197492..ec55db892 100644 --- a/src/bank-lib/bank_api_common.c +++ b/src/bank-lib/bank_api_common.c @@ -91,7 +91,7 @@ TALER_BANK_make_auth_header_ (const struct TALER_BANK_AuthenticationData *auth) * * @param u base URL of the bank * @param path Taler API path (i.e. "/history") - * @return the full URI to use with cURL + * @return the full URL to use with cURL */ char * TALER_BANK_path_to_url_ (const char *u, diff --git a/src/bank-lib/bank_api_common.h b/src/bank-lib/bank_api_common.h index 5d6578ce0..fcf2029d4 100644 --- a/src/bank-lib/bank_api_common.h +++ b/src/bank-lib/bank_api_common.h @@ -44,7 +44,7 @@ TALER_BANK_make_auth_header_ (const struct TALER_BANK_AuthenticationData *auth); * * @param u base URL of the bank * @param path Taler API path (i.e. "/history") - * @return the full URI to use with cURL + * @return the full URL to use with cURL */ char * TALER_BANK_path_to_url_ (const char *u, diff --git a/src/bank-lib/bank_api_history.c b/src/bank-lib/bank_api_history.c index d02b24cbd..d2035e881 100644 --- a/src/bank-lib/bank_api_history.c +++ b/src/bank-lib/bank_api_history.c @@ -138,7 +138,7 @@ parse_account_history (struct TALER_BANK_HistoryHandle *hh, } td.account_details = json_pack ("{s:s, s:s, s:I}", "type", "test", - "bank_uri", hh->bank_base_url, + "bank_url", hh->bank_base_url, "account_number", (json_int_t) other_account); hh->hcb (hh->hcb_cls, MHD_HTTP_OK, diff --git a/src/bank-lib/fakebank.c b/src/bank-lib/fakebank.c index ff7ecef90..6761cb519 100644 --- a/src/bank-lib/fakebank.c +++ b/src/bank-lib/fakebank.c @@ -958,7 +958,7 @@ handle_mhd_request (void *cls, connection, con_cls); - /* Unexpected URI path, just close the connection. */ + /* Unexpected URL path, just close the connection. */ /* we're rather impolite here, but it's a testcase. */ GNUNET_break_op (0); return MHD_NO; diff --git a/src/bank-lib/test_bank_interpreter.c b/src/bank-lib/test_bank_interpreter.c index 96a10e4b1..40adea54f 100644 --- a/src/bank-lib/test_bank_interpreter.c +++ b/src/bank-lib/test_bank_interpreter.c @@ -330,7 +330,7 @@ build_history (struct InterpreterState *is, = json_pack ("{s:s, s:s, s:I}", "type", "test", - "bank_uri", + "bank_url", "http://localhost:8080", "account_number", (json_int_t) pos->details.admin_add_incoming.debit_account_no); @@ -347,7 +347,7 @@ build_history (struct InterpreterState *is, = json_pack ("{s:s, s:s, s:I}", "type", "test", - "bank_uri", + "bank_url", "http://localhost:8080", "account_number", (json_int_t) pos->details.admin_add_incoming.credit_account_no); |