Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions IDE/MSVS-2019-AZSPHERE/user_settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
#define HAVE_ECC
#define HAVE_SUPPORTED_CURVES
#define HAVE_TLS_EXTENSIONS
#define HAVE_SERVER_RENEGOTIATION_INFO
#define HAVE_ONE_TIME_AUTH
#define HAVE_TRUNCATED_HMAC
#define HAVE_EXTENDED_MASTER
Expand Down
3 changes: 2 additions & 1 deletion wolfcrypt/src/wc_port.c
Original file line number Diff line number Diff line change
Expand Up @@ -5747,7 +5747,6 @@ char* wolfSSL_strnstr(const char* s1, const char* s2, size_t n)
#include <fcntl.h>
#include <errno.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <unistd.h>

#ifndef O_CLOEXEC
Expand Down Expand Up @@ -5813,6 +5812,8 @@ int wc_open_cloexec_mode(const char* path, int flags, int mode)
}

#if !defined(NO_FILESYSTEM) && defined(XFDOPEN)
#include <sys/stat.h>

/* Truncate or create path for writing, owner read/write only. */
XFILE wc_fopen_owner_only(const char* path)
{
Expand Down
Loading