summaryrefslogtreecommitdiffstats
path: root/src/util/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/util.h')
-rw-r--r--src/util/util.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/util/util.h b/src/util/util.h
index b4ab14e71..d7dc0aaf2 100644
--- a/src/util/util.h
+++ b/src/util/util.h
@@ -327,8 +327,13 @@ int split_on_separator(TALLOC_CTX *mem_ctx, const char *str,
char **parse_args(const char *str);
-errno_t parse_cert_verify_opts(const char *verify_opts, bool *do_ocsp);
+struct cert_verify_opts {
+ bool do_ocsp;
+ bool do_verification;
+};
+errno_t parse_cert_verify_opts(TALLOC_CTX *mem_ctx, const char *verify_opts,
+ struct cert_verify_opts **cert_verify_opts);
errno_t sss_hash_create(TALLOC_CTX *mem_ctx,
unsigned long count,