mirror of https://github.com/openssl/openssl.git
				
				
				
			Typos.
This commit is contained in:
		
							parent
							
								
									e6fa67fa93
								
							
						
					
					
						commit
						82384690e2
					
				|  | @ -57,6 +57,7 @@ | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <o_str.h> | #include <o_str.h> | ||||||
|  | #include <openssl/e_os2.h> | ||||||
| 
 | 
 | ||||||
| int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n) | 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) | #if defined(OPENSSL_SYS_VMS) | ||||||
| 	return OSSL_strncasecmp(str1, str2, (size_t)-1); | 	return OSSL_strncasecmp(str1, str2, (size_t)-1); | ||||||
| #elif defined(OPENSSL_SYS_WINDOWS) | #elif defined(OPENSSL_SYS_WINDOWS) | ||||||
| 	return _stricmp(str1, str2, n); | 	return _stricmp(str1, str2); | ||||||
| #else | #else | ||||||
| 	return strcasecmp(str1, str2); | 	return strcasecmp(str1, str2); | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
|  | @ -62,6 +62,6 @@ | ||||||
| #include <string.h> | #include <string.h> | ||||||
| 
 | 
 | ||||||
| int OPENSSL_strcasecmp(const char *str1, const char *str2); | 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 | #endif | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue