diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-06-11 15:40:53 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-06-11 15:40:53 +0000 |
commit | 87cbef94cb86c72cb6059e99c27259d99d4e4c06 (patch) | |
tree | 01d8a5911ccd62bbf2d7440d532634f60f41bbc6 /lib | |
parent | 070c122910b67a2c6de719c9fbf84f78dc9dfba4 (diff) |
Tsk. Tsk. Someone forgot to compile test the other half.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/bio/b_print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/bio/b_print.c b/lib/libcrypto/bio/b_print.c index a790bb0b7da..7f423f953c5 100644 --- a/lib/libcrypto/bio/b_print.c +++ b/lib/libcrypto/bio/b_print.c @@ -1,4 +1,4 @@ -/* $OpenBSD: b_print.c,v 1.23 2014/06/11 15:08:43 deraadt Exp $ */ +/* $OpenBSD: b_print.c,v 1.24 2014/06/11 15:40:52 jsing Exp $ */ /* Theo de Raadt places this file in the public domain. */ #include <openssl/bio.h> @@ -49,7 +49,7 @@ BIO_vprintf(BIO *bio, const char *format, va_list args) ret = vasprintf(&buf, format, args); if (buf == NULL) { - ret = -1 + ret = -1; goto fail; } BIO_write(bio, buf, ret); |