diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2020-12-09 22:18:13 +0100 |
---|---|---|
committer | Sander Vrijders <sander@ouroboros.rocks> | 2020-12-12 11:37:56 +0100 |
commit | 54f632767df709f6afb87ba37c7ee0b71a2bdbce (patch) | |
tree | 175ccb7374d5a7a093b2d1e4a91a61cbcf8a84da /src/lib/crypt.c | |
parent | d345436f01e64dfe595783d13b45d6a341256e3e (diff) | |
download | ouroboros-54f632767df709f6afb87ba37c7ee0b71a2bdbce.tar.gz ouroboros-54f632767df709f6afb87ba37c7ee0b71a2bdbce.zip |
lib: Fix flow_accept without openssl
DH key creation was returning -ECRYPT if opennssl is not installed,
instead of success (0).
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/lib/crypt.c')
-rw-r--r-- | src/lib/crypt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/crypt.c b/src/lib/crypt.c index cda3cb46..06cc1749 100644 --- a/src/lib/crypt.c +++ b/src/lib/crypt.c @@ -365,8 +365,9 @@ static int crypt_dh_pkp_create(void ** pkp, (void) pk; memset(pk, 0, MSGBUFSZ); + *pkp = NULL; - return -ECRYPT; + return 0; #endif } |