summaryrefslogtreecommitdiff
path: root/src/crypto/engine/engine.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/engine/engine.c')
-rw-r--r--src/crypto/engine/engine.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/crypto/engine/engine.c b/src/crypto/engine/engine.c
index 141ed230..875f1480 100644
--- a/src/crypto/engine/engine.c
+++ b/src/crypto/engine/engine.c
@@ -42,15 +42,15 @@ ENGINE *ENGINE_new(void) {
}
void ENGINE_free(ENGINE *engine) {
- /* Methods are currently required to be static so are not unref'ed. */
+ // Methods are currently required to be static so are not unref'ed.
OPENSSL_free(engine);
}
-/* set_method takes a pointer to a method and its given size and sets
- * |*out_member| to point to it. This function might want to be extended in the
- * future to support making a copy of the method so that a stable ABI for
- * ENGINEs can be supported. But, for the moment, all *_METHODS must be
- * static. */
+// set_method takes a pointer to a method and its given size and sets
+// |*out_member| to point to it. This function might want to be extended in the
+// future to support making a copy of the method so that a stable ABI for
+// ENGINEs can be supported. But, for the moment, all *_METHODS must be
+// static.
static int set_method(void **out_member, const void *method, size_t method_size,
size_t compiled_size) {
const struct openssl_method_common_st *common = method;