commit edc0d6d8678395999004b551556d9013cc385048
parent b8697f468ff1f6b06443a3274597b2c54847f4cf
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date: Sun, 22 Jun 2025 12:59:31 +0200
change remaining v42 to v19
Diffstat:
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/backend/taler-merchant-httpd.c b/src/backend/taler-merchant-httpd.c
@@ -153,10 +153,10 @@ static struct GNUNET_DB_EventHandler *instance_eh;
struct GNUNET_CONTAINER_MultiHashMap *TMH_by_id_map;
/**
- * #GNUNET_YES if protocol version 42 is strictly enforced.
+ * #GNUNET_YES if protocol version 19 is strictly enforced.
* (Default is #GNUNET_NO)
*/
-int TMH_strict_v42;
+int TMH_strict_v19;
/**
* How long do we need to keep information on paid contracts on file for tax
@@ -243,7 +243,7 @@ struct ScopePermissionMap
* The default scopes array for merchant
*/
struct ScopePermissionMap scope_permissions[] = {
- /* Deprecated since v42 */
+ /* Deprecated since v19 */
{
.as = TMH_AS_ADMIN,
.name = "write",
@@ -2670,14 +2670,14 @@ run (void *cls,
}
if (GNUNET_SYSERR !=
- (TMH_strict_v42 = GNUNET_CONFIGURATION_get_value_yesno (cfg,
+ (TMH_strict_v19 = GNUNET_CONFIGURATION_get_value_yesno (cfg,
"merchant",
- "STRICT_PROTOCOL_V42")))
+ "STRICT_PROTOCOL_V19")))
{
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
"merchant",
- "STRICT_PROTOCOL_V42");
- TMH_strict_v42 = GNUNET_NO;
+ "STRICT_PROTOCOL_V19");
+ TMH_strict_v19 = GNUNET_NO;
}
if (GNUNET_OK !=
GNUNET_CONFIGURATION_get_value_time (cfg,