aboutsummaryrefslogtreecommitdiff
path: root/src/extensions/extensions.c
diff options
context:
space:
mode:
authorÖzgür Kesim <oec-taler@kesim.org>2022-10-05 16:07:22 +0200
committerÖzgür Kesim <oec-taler@kesim.org>2022-10-05 16:07:22 +0200
commitfc83650115313d50f79a11ce79f057474d755322 (patch)
treebb888c212645fe0bf4a66ab1e37dca48009ca423 /src/extensions/extensions.c
parent2524dfc8d318a8f765e1600f1ecde54bc6c5a921 (diff)
refactor extensions: config -> manifest
Diffstat (limited to 'src/extensions/extensions.c')
-rw-r--r--src/extensions/extensions.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/extensions/extensions.c b/src/extensions/extensions.c
index 33e03613..02137d31 100644
--- a/src/extensions/extensions.c
+++ b/src/extensions/extensions.c
@@ -309,7 +309,9 @@ TALER_extensions_load_manifests (
int critical;
const char *version;
json_t *config;
- struct TALER_Extension *extension = (struct TALER_Extension *)TALER_extensions_get_by_name (name);
+ struct TALER_Extension *extension = (struct
+ TALER_Extension *)
+ TALER_extensions_get_by_name (name);
if (NULL == extension)
{
@@ -332,7 +334,7 @@ TALER_extensions_load_manifests (
/* This _should_ work now */
if (GNUNET_OK !=
- extension->load_config ( extension, config))
+ extension->load_config (extension, config))
return GNUNET_SYSERR;
extension->enabled = true;