From: Andy Polyakov Date: Thu, 4 Apr 2013 13:57:43 +0000 (+0200) Subject: cryptlib.c: fix typo in OPENSSL_showfatal. X-Git-Tag: master-pre-reformat~1301 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99cda4376e75382f2b585bcb569080a225273e49;p=thirdparty%2Fopenssl.git cryptlib.c: fix typo in OPENSSL_showfatal. --- diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c index 56d82adfcd2..049a7bba919 100644 --- a/crypto/cryptlib.c +++ b/crypto/cryptlib.c @@ -310,7 +310,7 @@ void OPENSSL_showfatal (const char *fmta,...) DWORD out; va_start (ap,fmta); - len=_vsnprintf((char *)buf,sizeof(buf),fmt,ap); + len=_vsnprintf((char *)buf,sizeof(buf),fmta,ap); WriteFile(h,buf,len<0?sizeof(buf):(DWORD)len,&out,NULL); va_end (ap); return;