summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-02-14 10:28:08 +0100
committerRichard Levitte <levitte@openssl.org>2018-02-14 20:11:06 +0100
commit4fd39122e51c3c44fcb72fb9b732d5008efda399 (patch)
treec4ea8034f09040ac86ae4ddf7a3b75ec6313c18a /include
parent87e17dc550318a7217dbb521603f0b096dff1764 (diff)
OSSL_STORE: Add OSSL_STORE_vctrl()
It's a convenient complement to OSSL_STORE_ctrl() Suggested by Norm Green Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/5363)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/store.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/openssl/store.h b/include/openssl/store.h
index 8ec2edc8ef..ff42953e6c 100644
--- a/include/openssl/store.h
+++ b/include/openssl/store.h
@@ -58,6 +58,7 @@ OSSL_STORE_CTX *OSSL_STORE_open(const char *uri, const UI_METHOD *ui_method,
* Each command takes different arguments.
*/
int OSSL_STORE_ctrl(OSSL_STORE_CTX *ctx, int cmd, ... /* args */);
+int OSSL_STORE_vctrl(OSSL_STORE_CTX *ctx, int cmd, va_list args);
/*
* Common ctrl commands that different loaders may choose to support.