mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-05 13:44:41 +02:00
version 2.9.2 release
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
AC_INIT([cyassl],[2.9.1],[https://github.com/cyassl/cyassl/issues],[cyassl],[http://www.yassl.com])
|
AC_INIT([cyassl],[2.9.2],[https://github.com/cyassl/cyassl/issues],[cyassl],[http://www.yassl.com])
|
||||||
|
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
|
|
||||||
@@ -31,7 +31,7 @@ AC_CONFIG_MACRO_DIR([m4])
|
|||||||
AC_CONFIG_HEADERS([config.h:config.in])dnl Keep filename to 8.3 for MS-DOS.
|
AC_CONFIG_HEADERS([config.h:config.in])dnl Keep filename to 8.3 for MS-DOS.
|
||||||
|
|
||||||
#shared library versioning
|
#shared library versioning
|
||||||
CYASSL_LIBRARY_VERSION=5:3:0
|
CYASSL_LIBRARY_VERSION=5:4:0
|
||||||
# | | |
|
# | | |
|
||||||
# +------+ | +---+
|
# +------+ | +---+
|
||||||
# | | |
|
# | | |
|
||||||
|
@@ -26,8 +26,8 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define LIBCYASSL_VERSION_STRING "2.9.1"
|
#define LIBCYASSL_VERSION_STRING "2.9.2"
|
||||||
#define LIBCYASSL_VERSION_HEX 0x02009001
|
#define LIBCYASSL_VERSION_HEX 0x02009002
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
@@ -3012,6 +3012,8 @@ static int MatchDomainName(const char* pattern, int len, const char* str)
|
|||||||
while (len > 0) {
|
while (len > 0) {
|
||||||
|
|
||||||
p = (char)XTOLOWER(*pattern++);
|
p = (char)XTOLOWER(*pattern++);
|
||||||
|
if (p == 0)
|
||||||
|
break;
|
||||||
|
|
||||||
if (p == '*') {
|
if (p == '*') {
|
||||||
while (--len > 0 && (p = (char)XTOLOWER(*pattern++)) == '*')
|
while (--len > 0 && (p = (char)XTOLOWER(*pattern++)) == '*')
|
||||||
|
Reference in New Issue
Block a user