summaryrefslogtreecommitdiff
path: root/src/backenddb
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-04-21 20:33:03 +0200
committerChristian Grothoff <christian@grothoff.org>2021-04-21 20:33:03 +0200
commit873f0ac8448a7f4d2efaef4e9ab9840e90a3b867 (patch)
tree05ca70c592f6833e94c429d6cbcf9263ec4e1f10 /src/backenddb
parentcd5a980318d467206d30958073fa34fbb6a20f18 (diff)
downloadmerchant-873f0ac8448a7f4d2efaef4e9ab9840e90a3b867.tar.gz
merchant-873f0ac8448a7f4d2efaef4e9ab9840e90a3b867.tar.bz2
merchant-873f0ac8448a7f4d2efaef4e9ab9840e90a3b867.zip
fix misc doxygen issues
Diffstat (limited to 'src/backenddb')
-rw-r--r--src/backenddb/plugin_merchantdb_postgres.c24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c
index cb9d1163..efdfff9a 100644
--- a/src/backenddb/plugin_merchantdb_postgres.c
+++ b/src/backenddb/plugin_merchantdb_postgres.c
@@ -610,15 +610,16 @@ postgres_lookup_instances (void *cls,
* @param merchant_pub public key of the instance
* @param merchant_priv private key of the instance
* @param is details about the instance
+ * @param ias authentication settings for the instance
* @return database result code
*/
static enum GNUNET_DB_QueryStatus
-postgres_insert_instance (void *cls,
- const struct TALER_MerchantPublicKeyP *merchant_pub,
- const struct TALER_MerchantPrivateKeyP *merchant_priv,
- const struct TALER_MERCHANTDB_InstanceSettings *is,
- const struct
- TALER_MERCHANTDB_InstanceAuthSettings *ias)
+postgres_insert_instance (
+ void *cls,
+ const struct TALER_MerchantPublicKeyP *merchant_pub,
+ const struct TALER_MerchantPrivateKeyP *merchant_priv,
+ const struct TALER_MERCHANTDB_InstanceSettings *is,
+ const struct TALER_MERCHANTDB_InstanceAuthSettings *ias)
{
struct PostgresClosure *pg = cls;
struct GNUNET_PQ_QueryParam params[] = {
@@ -776,14 +777,15 @@ postgres_update_instance (void *cls,
* into our database.
*
* @param cls closure
- * @param ias details about the instance
+ * @param merchant_id identity of the instance
+ * @param is authentication details about the instance
* @return database result code
*/
static enum GNUNET_DB_QueryStatus
-postgres_update_instance_auth (void *cls,
- const char *merchant_id,
- const struct
- TALER_MERCHANTDB_InstanceAuthSettings *is)
+postgres_update_instance_auth (
+ void *cls,
+ const char *merchant_id,
+ const struct TALER_MERCHANTDB_InstanceAuthSettings *is)
{
struct PostgresClosure *pg = cls;
struct GNUNET_PQ_QueryParam params[] = {