commit | 3ae76679c7aeebd455173bb65b720b97c3261a79 | [log] [tgz] |
---|---|---|
author | Bodo Möller <bodo@openssl.org> | Fri May 14 11:52:49 1999 +0000 |
committer | Bodo Möller <bodo@openssl.org> | Fri May 14 11:52:49 1999 +0000 |
tree | d70e32471e9e5b4de8439eaf50484caaba4c04bb | |
parent | e6d0b6eca3d630d2ee306a61782fdfebce146478 [diff] [blame] |
Introduce and use function typedef pem_password_cb so that we don't call those functions without having a parameter list declaration. (There are various similar cases left ...)
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c index 666dba5..09c837c 100644 --- a/ssl/ssl_lib.c +++ b/ssl/ssl_lib.c
@@ -1115,7 +1115,7 @@ Free((char *)a); } -void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx,int (*cb)()) +void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb) { ctx->default_passwd_callback=cb; }