forked from genodelabs/genode-world
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run/umurmur: fix run script for openssl 3
- fix compilation of app/umurmur - add missing nic_router and adapt configuration - increase resources for umurmur The run script starts without errors but I do not know how to test it. Issue genodelabs#342
- Loading branch information
Showing
5 changed files
with
52 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
a194b75e385ebbd429835056c75917373be5b4e1 | ||
73d24387365c4cc868cc4026d9c88f83b3565bc5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/src/ssli_openssl.c b/src/ssli_openssl.c | ||
index 8ff1bcf..872ddf9 100644 | ||
--- a/src/ssli_openssl.c | ||
+++ b/src/ssli_openssl.c | ||
@@ -167,9 +167,6 @@ static void SSL_initializeCert() { | ||
if (!rsa || !did_load_cert) { | ||
Log_info("Generating new server certificate."); | ||
|
||
- | ||
- CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON); | ||
- | ||
x509 = X509_new(); | ||
pkey = EVP_PKEY_new(); | ||
rsa = RSA_generate_key(4096,RSA_F4,NULL,NULL); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters