diff options
author | jsing <> | 2014-06-11 15:40:52 +0000 |
---|---|---|
committer | jsing <> | 2014-06-11 15:40:52 +0000 |
commit | c4fc3df7be0ef90c4545231ed4e9038d207bf0ed (patch) | |
tree | 51903fa0066cc9a24f2390d5833c87c48310decc | |
parent | 563d45f5e31be40b590640330f1a08569995ef28 (diff) | |
download | openbsd-c4fc3df7be0ef90c4545231ed4e9038d207bf0ed.tar.gz openbsd-c4fc3df7be0ef90c4545231ed4e9038d207bf0ed.tar.bz2 openbsd-c4fc3df7be0ef90c4545231ed4e9038d207bf0ed.zip |
Tsk. Tsk. Someone forgot to compile test the other half.
-rw-r--r-- | src/lib/libcrypto/bio/b_print.c | 4 | ||||
-rw-r--r-- | 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 @@ | |||
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); |