[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-exchange] branch master updated: -try to make spell checker happy
From: |
gnunet |
Subject: |
[taler-exchange] branch master updated: -try to make spell checker happy |
Date: |
Thu, 02 Jan 2025 10:53:32 +0100 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository exchange.
The following commit(s) were added to refs/heads/master by this push:
new 2afadf85a -try to make spell checker happy
2afadf85a is described below
commit 2afadf85abaf9c97475c18994c11b8859ef27288
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Thu Jan 2 10:53:24 2025 +0100
-try to make spell checker happy
---
src/exchangedb/exchangedb_accounts.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/exchangedb/exchangedb_accounts.c
b/src/exchangedb/exchangedb_accounts.c
index ee614cc83..0e574961b 100644
--- a/src/exchangedb/exchangedb_accounts.c
+++ b/src/exchangedb/exchangedb_accounts.c
@@ -177,7 +177,7 @@ add_account_cb (void *cls,
char *method;
bool debit;
bool credit;
- struct TALER_FullPayto fpt;
+ struct TALER_FullPayto full_payto;
char *err;
if (0 != strncasecmp (section,
@@ -209,9 +209,9 @@ add_account_cb (void *cls,
"PAYTO_URI");
return;
}
- fpt.full_payto = payto_uri;
+ full_payto.full_payto = payto_uri;
method = TALER_payto_get_method (payto_uri);
- if ( (NULL != (err = TALER_payto_validate (fpt))) ||
+ if ( (NULL != (err = TALER_payto_validate (full_payto))) ||
(NULL == method) )
{
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
@@ -226,14 +226,14 @@ add_account_cb (void *cls,
GNUNET_assert (NULL != method);
wa = GNUNET_new (struct WireAccount);
wa->section_name = GNUNET_strdup (section);
- wa->payto_uri = fpt;
+ wa->payto_uri = full_payto;
wa->method = method;
wa->ai.debit_enabled = debit;
wa->ai.credit_enabled = credit;
wa->ai.auth = NULL;
wa->ai.section_name = wa->section_name;
wa->ai.method = wa->method;
- wa->ai.payto_uri = fpt;
+ wa->ai.payto_uri = full_payto;
if (lc->load_auth_data)
{
char *csn;
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-exchange] branch master updated: -try to make spell checker happy,
gnunet <=