diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libressl/ressl_config.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/lib/libressl/ressl_config.c b/src/lib/libressl/ressl_config.c index 5deb8d187f..319bba330d 100644 --- a/src/lib/libressl/ressl_config.c +++ b/src/lib/libressl/ressl_config.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ressl_config.c,v 1.9 2014/09/28 06:24:00 tedu Exp $ */ | 1 | /* $OpenBSD: ressl_config.c,v 1.10 2014/09/28 14:46:09 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -97,6 +97,13 @@ ressl_config_free(struct ressl_config *config) | |||
97 | free(config); | 97 | free(config); |
98 | } | 98 | } |
99 | 99 | ||
100 | void | ||
101 | ressl_config_clear_keys(struct ressl_config *config) | ||
102 | { | ||
103 | ressl_config_set_cert_mem(config, NULL, 0); | ||
104 | ressl_config_set_key_mem(config, NULL, 0); | ||
105 | } | ||
106 | |||
100 | int | 107 | int |
101 | ressl_config_set_ca_file(struct ressl_config *config, const char *ca_file) | 108 | ressl_config_set_ca_file(struct ressl_config *config, const char *ca_file) |
102 | { | 109 | { |