diff options
author | Özgür Kesim <oec-taler@kesim.org> | 2022-10-06 21:11:47 +0200 |
---|---|---|
committer | Özgür Kesim <oec-taler@kesim.org> | 2022-10-06 21:11:47 +0200 |
commit | b447506342c9792244e700d930618a8923142a13 (patch) | |
tree | 1996b2bd717c78f1543c9572a500b41aa6baa9ce /src/extensions/age_restriction/age_restriction.c | |
parent | 086c4a243f6a56e45d94b996afb85a15bafefc6f (diff) |
refinements of policy extension APIs
Diffstat (limited to 'src/extensions/age_restriction/age_restriction.c')
-rw-r--r-- | src/extensions/age_restriction/age_restriction.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/extensions/age_restriction/age_restriction.c b/src/extensions/age_restriction/age_restriction.c index a1a11e4f..576a6039 100644 --- a/src/extensions/age_restriction/age_restriction.c +++ b/src/extensions/age_restriction/age_restriction.c @@ -151,7 +151,9 @@ struct TALER_Extension TE_age_restriction = { .disable = &age_restriction_disable, .load_config = &age_restriction_load_config, .manifest = &age_restriction_manifest, - .deposit_handler = NULL, + + /* This extension is not a policy extension */ + .parse_policy_details = NULL, .http_get_handler = NULL, .http_post_handler = NULL, }; |