提交 9e88c827 编写于 作者: A Andy Polyakov

Minor cryptlib.c update: compiler warnings in OPENSSL_showfatal and

OPENSSL_stderr stub.
上级 9d2f51c0
......@@ -645,9 +645,10 @@ static int IsService(void)
}
#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 @@ void OPENSSL_showfatal (char *fmta,...)
#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 @@ void OPENSSL_showfatal (char *fmta,...)
}
} while (keepgoing);
}
fmt = (TCHAR *)fmtw;
fmt = (const TCHAR *)fmtw;
} while (0);
va_start (ap,fmta);
......@@ -728,7 +729,7 @@ void OPENSSL_showfatal (char *fmta,...)
}
}
#else
void OPENSSL_showfatal (char *fmta,...)
void OPENSSL_showfatal (const char *fmta,...)
{ va_list ap;
va_start (ap,fmta);
......@@ -744,3 +745,5 @@ void OpenSSLDie(const char *file,int line,const char *assertion)
file,line,assertion);
abort();
}
void *OPENSSL_stderr(void) { return stderr; }
......@@ -95,6 +95,8 @@ extern "C" {
void OPENSSL_cpuid_setup(void);
extern unsigned long OPENSSL_ia32cap_P;
void OPENSSL_showfatal(const char *,...);
void *OPENSSL_stderr(void);
#ifdef __cplusplus
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册