Skip to content

Commit

Permalink
Integrate cesanta#1008
Browse files Browse the repository at this point in the history
PUBLISHED_FROM=1b7bf2d7318568851e6c8f07451cd3982d9498b6
  • Loading branch information
cpq authored and cesantabot committed Jun 13, 2019
1 parent 3fc61a3 commit 2bdbfc2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions mongoose.c
Original file line number Diff line number Diff line change
Expand Up @@ -4968,7 +4968,7 @@ static enum mg_ssl_if_result mg_set_cipher_list(SSL_CTX *ctx, const char *cl) {
: MG_SSL_ERROR);
}

#ifndef KR_VERSION
#if !defined(KR_VERSION) && !defined(LIBRESSL_VERSION_NUMBER)
static unsigned int mg_ssl_if_ossl_psk_cb(SSL *ssl, const char *hint,
char *identity,
unsigned int max_identity_len,
Expand Down Expand Up @@ -5034,10 +5034,10 @@ static enum mg_ssl_if_result mg_ssl_if_ossl_set_psk(struct mg_ssl_if_ctx *ctx,
(void) ctx;
(void) identity;
(void) key_str;
/* Krypton does not support PSK. */
/* Krypton / LibreSSL does not support PSK. */
return MG_SSL_ERROR;
}
#endif /* defined(KR_VERSION) */
#endif /* !defined(KR_VERSION) && !defined(LIBRESSL_VERSION_NUMBER) */

const char *mg_set_ssl(struct mg_connection *nc, const char *cert,
const char *ca_cert) {
Expand Down
6 changes: 3 additions & 3 deletions src/mg_ssl_if_openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ static enum mg_ssl_if_result mg_set_cipher_list(SSL_CTX *ctx, const char *cl) {
: MG_SSL_ERROR);
}

#ifndef KR_VERSION
#if !defined(KR_VERSION) && !defined(LIBRESSL_VERSION_NUMBER)
static unsigned int mg_ssl_if_ossl_psk_cb(SSL *ssl, const char *hint,
char *identity,
unsigned int max_identity_len,
Expand Down Expand Up @@ -376,10 +376,10 @@ static enum mg_ssl_if_result mg_ssl_if_ossl_set_psk(struct mg_ssl_if_ctx *ctx,
(void) ctx;
(void) identity;
(void) key_str;
/* Krypton does not support PSK. */
/* Krypton / LibreSSL does not support PSK. */
return MG_SSL_ERROR;
}
#endif /* defined(KR_VERSION) */
#endif /* !defined(KR_VERSION) && !defined(LIBRESSL_VERSION_NUMBER) */

const char *mg_set_ssl(struct mg_connection *nc, const char *cert,
const char *ca_cert) {
Expand Down
2 changes: 1 addition & 1 deletion test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COMMON_DIR_DEV = ../../common

# Our dev repo and public mongoose repo have different layouts, so here
# we make it work on both
ifneq ("$(wildcard ../../fw)","")
ifneq ("$(wildcard ../../common.mk)","")
COMMON_PARENT = ../..
else
COMMON_PARENT = $(SRC_DIR)
Expand Down

0 comments on commit 2bdbfc2

Please sign in to comment.