summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-11-25 21:32:41 +0100
committerChristian Grothoff <christian@grothoff.org>2015-11-25 21:32:41 +0100
commitc9382880e10a9e83f325aca53ed0d2360d161529 (patch)
tree7f5f6fae79fd2ec14498aa413742aacd8969b50f
parent22ba70b543717aa6d91ca4a44bd731b4a3bfc4f9 (diff)
downloadmerchant-c9382880e10a9e83f325aca53ed0d2360d161529.tar.gz
merchant-c9382880e10a9e83f325aca53ed0d2360d161529.tar.bz2
merchant-c9382880e10a9e83f325aca53ed0d2360d161529.zip
fix naming conventions: do not use MERCHANT_ prefix for purely local symbols
-rw-r--r--src/backend/taler-merchant-httpd_auditors.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/taler-merchant-httpd_auditors.c b/src/backend/taler-merchant-httpd_auditors.c
index 8b7a5eb6..7edcdb9e 100644
--- 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;