summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2014-06-11 15:40:52 +0000
committerjsing <>2014-06-11 15:40:52 +0000
commitd1a0198722c76096bd556f920747be41365d2a0c (patch)
tree51903fa0066cc9a24f2390d5833c87c48310decc /src
parentdb6f3580d58467f7c617ba3534162f36903a2fdc (diff)
downloadopenbsd-d1a0198722c76096bd556f920747be41365d2a0c.tar.gz
openbsd-d1a0198722c76096bd556f920747be41365d2a0c.tar.bz2
openbsd-d1a0198722c76096bd556f920747be41365d2a0c.zip
Tsk. Tsk. Someone forgot to compile test the other half.
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/bio/b_print.c4
-rw-r--r--src/lib/libssl/src/crypto/bio/b_print.c4
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 @@
1/* $OpenBSD: b_print.c,v 1.23 2014/06/11 15:08:43 deraadt Exp $ */ 1/* $OpenBSD: b_print.c,v 1.24 2014/06/11 15:40:52 jsing Exp $ */
2/* Theo de Raadt places this file in the public domain. */ 2/* Theo de Raadt places this file in the public domain. */
3 3
4#include <openssl/bio.h> 4#include <openssl/bio.h>
@@ -49,7 +49,7 @@ BIO_vprintf(BIO *bio, const char *format, va_list args)
49 49
50 ret = vasprintf(&buf, format, args); 50 ret = vasprintf(&buf, format, args);
51 if (buf == NULL) { 51 if (buf == NULL) {
52 ret = -1 52 ret = -1;
53 goto fail; 53 goto fail;
54 } 54 }
55 BIO_write(bio, buf, ret); 55 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 @@
1/* $OpenBSD: b_print.c,v 1.23 2014/06/11 15:08:43 deraadt Exp $ */ 1/* $OpenBSD: b_print.c,v 1.24 2014/06/11 15:40:52 jsing Exp $ */
2/* Theo de Raadt places this file in the public domain. */ 2/* Theo de Raadt places this file in the public domain. */
3 3
4#include <openssl/bio.h> 4#include <openssl/bio.h>
@@ -49,7 +49,7 @@ BIO_vprintf(BIO *bio, const char *format, va_list args)
49 49
50 ret = vasprintf(&buf, format, args); 50 ret = vasprintf(&buf, format, args);
51 if (buf == NULL) { 51 if (buf == NULL) {
52 ret = -1 52 ret = -1;
53 goto fail; 53 goto fail;
54 } 54 }
55 BIO_write(bio, buf, ret); 55 BIO_write(bio, buf, ret);