Skip to content

Commit

Permalink
fix: ssl: compatibility for openssl >= 3.0
Browse files Browse the repository at this point in the history
Signed-off-by: Jianhui Zhao <[email protected]>
  • Loading branch information
zhaojh329 committed May 2, 2022
1 parent daf1e3c commit abc2518
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/buffer
Submodule buffer updated 2 files
+1 βˆ’1 buffer.c
+6 βˆ’5 buffer.h
2 changes: 1 addition & 1 deletion src/log
Submodule log updated 1 files
+4 βˆ’4 log.c
2 changes: 1 addition & 1 deletion src/rtty.c
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ static int ssl_negotiated(struct rtty *rtty)
char err_buf[128];
int ret;

ret = ssl_connect(rtty->ssl, false, on_ssl_verify_error, &valid_cert);
ret = ssl_connect(rtty->ssl, on_ssl_verify_error, &valid_cert);
if (ret == SSL_PENDING)
return 0;

Expand Down
2 changes: 1 addition & 1 deletion src/ssl
Submodule ssl updated 5 files
+1 βˆ’1 example-client.c
+1 βˆ’1 example-server.c
+11 βˆ’1 mbedtls.c
+18 βˆ’3 openssl.c
+2 βˆ’2 ssl.h

0 comments on commit abc2518

Please sign in to comment.