From c4fc3df7be0ef90c4545231ed4e9038d207bf0ed Mon Sep 17 00:00:00 2001 From: jsing <> Date: Wed, 11 Jun 2014 15:40:52 +0000 Subject: Tsk. Tsk. Someone forgot to compile test the other half. --- src/lib/libcrypto/bio/b_print.c | 4 ++-- src/lib/libssl/src/crypto/bio/b_print.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/libcrypto/bio/b_print.c b/src/lib/libcrypto/bio/b_print.c index a790bb0b7d..7f423f953c 100644 --- a/src/lib/libcrypto/bio/b_print.c +++ b/src/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 @@ -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); diff --git a/src/lib/libssl/src/crypto/bio/b_print.c b/src/lib/libssl/src/crypto/bio/b_print.c index a790bb0b7d..7f423f953c 100644 --- a/src/lib/libssl/src/crypto/bio/b_print.c +++ b/src/lib/libssl/src/crypto/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 @@ -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); -- cgit v1.2.3-55-g6feb