Skip to content

Commit

Permalink
Revert unintended search and replace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ttytm committed Sep 13, 2023
1 parent c50a576 commit a67ff44
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/civetweb/civetweb.c
Original file line number Diff line number Diff line change
Expand Up @@ -592,13 +592,13 @@ typedef const char *SOCK_OPT_TYPE;
#if !defined(SSL_LIB)

#if defined(OPENSSL_API_3_0)
#define SSL_LIB "libssl-3.dll"
#define CRYPTO_LIB "libcrypto-3.dll"
#define SSL_LIB "libssl-3-x64.dll"
#define CRYPTO_LIB "libcrypto-3-x64.dll"
#endif

#if defined(OPENSSL_API_1_1)
#define SSL_LIB "libssl-1_1.dll"
#define CRYPTO_LIB "libcrypto-1_1.dll"
#define SSL_LIB "libssl-1_1-x64.dll"
#define CRYPTO_LIB "libcrypto-1_1-x64.dll"
#endif /* OPENSSL_API_1_1 */

#if defined(OPENSSL_API_1_0)
Expand Down

0 comments on commit a67ff44

Please sign in to comment.