summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2014-06-11 15:40:52 +0000
committerjsing <jsing@openbsd.org>2014-06-11 15:40:52 +0000
commit83355eaf4290f3ff7de425503e055d25100fad49 (patch)
tree67ad7cb63501ba068bac9c66eba22b60039e8108 /lib/libssl/src
parentDisable TLS support... (diff)
downloadwireguard-openbsd-83355eaf4290f3ff7de425503e055d25100fad49.tar.xz
wireguard-openbsd-83355eaf4290f3ff7de425503e055d25100fad49.zip
Tsk. Tsk. Someone forgot to compile test the other half.
Diffstat (limited to 'lib/libssl/src')
-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);