Minor cryptlib.c update: compiler warnings in OPENSSL_showfatal and OPENSSL_stderr stub.
diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c index 2782e3e..b2674b2 100644 --- a/crypto/cryptlib.c +++ b/crypto/cryptlib.c
@@ -645,9 +645,10 @@ } #endif -void OPENSSL_showfatal (char *fmta,...) +void OPENSSL_showfatal (const char *fmta,...) { va_list ap; - TCHAR buf[256],*fmt; + TCHAR buf[256] + const TCHAR *fmt; HANDLE h; if ((h=GetStdHandle(STD_ERROR_HANDLE)) != NULL && @@ -671,7 +672,7 @@ #else fmtw = (WCHAR *)alloca (len_0*sizeof(WCHAR)); #endif - if (fmtw == NULL) { fmt=(TCHAR *)L"no stack?"; break; } + if (fmtw == NULL) { fmt=(const TCHAR *)L"no stack?"; break; } #ifndef OPENSSL_NO_MULTIBYTE if (!MultiByteToWideChar(CP_ACP,0,fmta,len_0,fmtw,len_0)) @@ -693,7 +694,7 @@ } } while (keepgoing); } - fmt = (TCHAR *)fmtw; + fmt = (const TCHAR *)fmtw; } while (0); va_start (ap,fmta); @@ -728,7 +729,7 @@ } } #else -void OPENSSL_showfatal (char *fmta,...) +void OPENSSL_showfatal (const char *fmta,...) { va_list ap; va_start (ap,fmta); @@ -744,3 +745,5 @@ file,line,assertion); abort(); } + +void *OPENSSL_stderr(void) { return stderr; }
diff --git a/crypto/cryptlib.h b/crypto/cryptlib.h index 8b0add7..1cc3b72 100644 --- a/crypto/cryptlib.h +++ b/crypto/cryptlib.h
@@ -95,6 +95,8 @@ void OPENSSL_cpuid_setup(void); extern unsigned long OPENSSL_ia32cap_P; +void OPENSSL_showfatal(const char *,...); +void *OPENSSL_stderr(void); #ifdef __cplusplus }