diff options
| author | Gary Ching-Pang Lin <glin@suse.com> | 2013-06-27 11:59:09 +0800 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2013-09-26 11:58:02 -0400 |
| commit | ad23233e2d0a380a7c9736387fdedabbd88121a3 (patch) | |
| tree | 608855eb7b76bc91922baf64af8ae4aa58a7c78b /Cryptlib/SysCall | |
| parent | e9e320e474f071afadcd0e6081de0f8c881d58d7 (diff) | |
| download | efi-boot-shim-ad23233e2d0a380a7c9736387fdedabbd88121a3.tar.gz efi-boot-shim-ad23233e2d0a380a7c9736387fdedabbd88121a3.zip | |
Enable openssl bio_printf()
bio_printf() was replaced with a dummy function and this made
several openssl functions useless. This commit adds the print
functions back, so that we don't have to implement our own
ASN1 time print function.
Diffstat (limited to 'Cryptlib/SysCall')
| -rw-r--r-- | Cryptlib/SysCall/CrtWrapper.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Cryptlib/SysCall/CrtWrapper.c b/Cryptlib/SysCall/CrtWrapper.c index fb446b67..5a8322d7 100644 --- a/Cryptlib/SysCall/CrtWrapper.c +++ b/Cryptlib/SysCall/CrtWrapper.c @@ -293,16 +293,6 @@ size_t fwrite (const void *buffer, size_t size, size_t count, FILE *stream) // -- Dummy OpenSSL Support Routines --
//
-int BIO_printf (void *bio, const char *format, ...)
-{
- return 0;
-}
-
-int BIO_snprintf(char *buf, size_t n, const char *format, ...)
-{
- return 0;
-}
-
void *UI_OpenSSL(void)
{
return NULL;
|
