kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit f59ee8e29ef601f2071c08094587a000fde31ff0
parent 81987cd0223f3cd3d5047463499c8d51e20b5369
Author: Joris Vink <joris@coders.se>
Date:   Wed, 28 Dec 2022 15:55:19 +0100

constify another RSA pointer.

Diffstat:
src/keymgr_openssl.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/keymgr_openssl.c b/src/keymgr_openssl.c @@ -747,7 +747,7 @@ keymgr_x509_msg(const char *domain, const void *data, size_t len, static void keymgr_acme_init(void) { - RSA *rsa; + const RSA *rsa; struct key *key; char *e, *n; int needsreg;