Update hashes. Fix a few typos in o_str.c
This commit is contained in:
parent
7418027279
commit
c61e45fba0
@ -57,6 +57,7 @@
|
||||
*/
|
||||
|
||||
#include <o_str.h>
|
||||
#include <openssl/e_os2.h>
|
||||
|
||||
int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n)
|
||||
{
|
||||
@ -87,7 +88,7 @@ int OPENSSL_strcasecmp(const char *str1, const char *str2)
|
||||
#if defined(OPENSSL_SYS_VMS)
|
||||
return OSSL_strncasecmp(str1, str2, (size_t)-1);
|
||||
#elif defined(OPENSSL_SYS_WINDOWS)
|
||||
return _stricmp(str1, str2, n);
|
||||
return _stricmp(str1, str2);
|
||||
#else
|
||||
return strcasecmp(str1, str2);
|
||||
#endif
|
||||
|
@ -62,6 +62,6 @@
|
||||
#include <string.h>
|
||||
|
||||
int OPENSSL_strcasecmp(const char *str1, const char *str2);
|
||||
int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n)
|
||||
int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n);
|
||||
|
||||
#endif
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA1(fips_dsa_ossl.c)= eb769361b524507754bcbfbda92b973e37433478
|
||||
SHA1(fips_dsa_gen.c)= 07fbd4ef3c4528590265b878a05571d86312fba1
|
||||
SHA1(fips_dsa_gen.c)= 6cd992b01f8b612dcdda7273cdc2302b05e39175
|
||||
|
Loading…
x
Reference in New Issue
Block a user