version 2.9.2 release

This commit is contained in:
Chris Conlon
2014-03-27 10:35:57 -06:00
parent 4677f2f2c1
commit 59c1adaf0e
3 changed files with 6 additions and 4 deletions

View File

@@ -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])
@@ -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.
#shared library versioning
CYASSL_LIBRARY_VERSION=5:3:0
CYASSL_LIBRARY_VERSION=5:4:0
# | | |
# +------+ | +---+
# | | |

View File

@@ -26,8 +26,8 @@
extern "C" {
#endif
#define LIBCYASSL_VERSION_STRING "2.9.1"
#define LIBCYASSL_VERSION_HEX 0x02009001
#define LIBCYASSL_VERSION_STRING "2.9.2"
#define LIBCYASSL_VERSION_HEX 0x02009002
#ifdef __cplusplus
}

View File

@@ -3012,6 +3012,8 @@ static int MatchDomainName(const char* pattern, int len, const char* str)
while (len > 0) {
p = (char)XTOLOWER(*pattern++);
if (p == 0)
break;
if (p == '*') {
while (--len > 0 && (p = (char)XTOLOWER(*pattern++)) == '*')