Module: kamailio
Branch: master
Commit: b0538d6515ad2a62f4336ec4395d10a5a9fc654b
URL:
https://github.com/kamailio/kamailio/commit/b0538d6515ad2a62f4336ec4395d10a…
Author: Henning Westerholt <hw(a)skalatan.de>
Committer: Henning Westerholt <hw(a)skalatan.de>
Date: 2019-10-07T11:31:50+02:00
tls: fix error in DBG message
---
Modified: src/modules/tls/tls_mod.c
---
Diff:
https://github.com/kamailio/kamailio/commit/b0538d6515ad2a62f4336ec4395d10a…
Patch:
https://github.com/kamailio/kamailio/commit/b0538d6515ad2a62f4336ec4395d10a…
---
diff --git a/src/modules/tls/tls_mod.c b/src/modules/tls/tls_mod.c
index 5784ce4842..424fad8a08 100644
--- a/src/modules/tls/tls_mod.c
+++ b/src/modules/tls/tls_mod.c
@@ -566,7 +566,7 @@ int mod_register(char *path, int *dlflags, void *p1, void *p2)
register_tls_hooks(&tls_h);
#if OPENSSL_VERSION_NUMBER >= 0x10100000L
- LM_DBG("setting fastrand random engine\n");
+ LM_DBG("setting cryptorand random engine\n");
RAND_set_rand_method(RAND_ksr_cryptorand_method());
#endif