merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit c9382880e10a9e83f325aca53ed0d2360d161529
parent 22ba70b543717aa6d91ca4a44bd731b4a3bfc4f9
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed, 25 Nov 2015 21:32:41 +0100

fix naming conventions: do not use MERCHANT_ prefix for purely local symbols

Diffstat:
Msrc/backend/taler-merchant-httpd_auditors.c | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/backend/taler-merchant-httpd_auditors.c b/src/backend/taler-merchant-httpd_auditors.c @@ -25,7 +25,7 @@ /** * Our representation of an auditor. */ -struct MERCHANT_Auditor +struct Auditor { /** * Auditor's legal name (FIXME: this is not what we really want.) @@ -38,7 +38,7 @@ struct MERCHANT_Auditor /** * Array of the auditors this merchant is willing to accept. */ -static struct MERCHANT_Auditor *auditors; +static struct Auditor *auditors; /** * The length of the #auditors array. @@ -65,8 +65,8 @@ TMH_AUDITORS_init (const struct GNUNET_CONFIGURATION_Handle *cfg) char *token_nf; /* do no free (nf) */ char *auditor_section; char *auditor_name; - struct MERCHANT_Auditor *r_auditors; - struct MERCHANT_Auditor auditor; + struct Auditor *r_auditors; + struct Auditor auditor; unsigned int cnt; int ok;