summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2014-06-11 15:40:53 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2014-06-11 15:40:53 +0000
commit872b5e26ab6665d8ae6a875e9619c91c84fd8d03 (patch)
tree71c1962d7b3de7c328e93b6a5d6c136a482736c4 /lib
parent26ee2c3803e1462f8e1bcf3ed223ab6472199571 (diff)
Tsk. Tsk. Someone forgot to compile test the other half.
Diffstat (limited to 'lib')
-rw-r--r--lib/libssl/src/crypto/bio/b_print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/bio/b_print.c b/lib/libssl/src/crypto/bio/b_print.c
index a790bb0b7da..7f423f953c5 100644
--- a/lib/libssl/src/crypto/bio/b_print.c
+++ b/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 <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);