forked from wolfSSL/wolfssl
fix github issue #65, don't undef with arg to options.h
This commit is contained in:
@ -2006,7 +2006,8 @@ for option in $OPTION_FLAGS; do
|
||||
continue
|
||||
fi
|
||||
|
||||
echo "#undef $noequalsign" >> $OPTION_FILE
|
||||
noarg=`echo $defonly | sed 's/=.*//'`
|
||||
echo "#undef $noarg" >> $OPTION_FILE
|
||||
echo "#define $noequalsign" >> $OPTION_FILE
|
||||
echo "" >> $OPTION_FILE
|
||||
else
|
||||
|
@ -6005,7 +6005,8 @@ WOLFSSL_X509_CHAIN* wolfSSL_SESSION_get_peer_chain(WOLFSSL_SESSION* session)
|
||||
#ifdef WOLFSSL_SESSION_STATS
|
||||
|
||||
/* requires session_mutex lock held, SSL_SUCCESS on ok */
|
||||
static int get_locked_session_stats(word32* active, word32* total, word32* peak){
|
||||
static int get_locked_session_stats(word32* active, word32* total, word32* peak)
|
||||
{
|
||||
int result = SSL_SUCCESS;
|
||||
int i;
|
||||
int count;
|
||||
|
Reference in New Issue
Block a user