projects
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
73325b2
)
cryptlib.c: fix typo in OPENSSL_showfatal.
author
Andy Polyakov
<appro@openssl.org>
Thu, 4 Apr 2013 13:57:43 +0000
(15:57 +0200)
committer
Andy Polyakov
<appro@openssl.org>
Thu, 4 Apr 2013 13:57:43 +0000
(15:57 +0200)
crypto/cryptlib.c
patch
|
blob
|
history
diff --git
a/crypto/cryptlib.c
b/crypto/cryptlib.c
index 56d82adfcd2c2884389f70b200ac14343c458faf..049a7bba9195624c84e4eef2a2a90ee93de951a4 100644
(file)
--- 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),fmt
a
,ap);
WriteFile(h,buf,len<0?sizeof(buf):(DWORD)len,&out,NULL);
va_end (ap);
return;