diff options
author | Matt Caswell <matt@openssl.org> | 2017-08-02 16:29:31 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2017-08-21 09:44:44 +0200 |
commit | 888098304b0a77aee2d5ca5951ee5fccfeb6b1c2 (patch) | |
tree | 6f0e8a65eb1d46c68d1f5bdcd9da1d2ffd9a11fe /crypto/bio | |
parent | Updates following feedback on OPENSSL_assert() removal (diff) | |
download | openssl-888098304b0a77aee2d5ca5951ee5fccfeb6b1c2.tar.xz openssl-888098304b0a77aee2d5ca5951ee5fccfeb6b1c2.zip |
More updates following review feedback
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3740)
Diffstat (limited to 'crypto/bio')
-rw-r--r-- | crypto/bio/b_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/b_print.c b/crypto/bio/b_print.c index bca586da84..ebb6845dbd 100644 --- a/crypto/bio/b_print.c +++ b/crypto/bio/b_print.c @@ -805,7 +805,7 @@ static int doapr_outch(char **sbuffer, char **buffer, size_t *currlen, size_t *maxlen, int c) { - /* If we haven't at least one buffer, someone has doe a big booboo */ + /* If we haven't at least one buffer, someone has done a big booboo */ if (!ossl_assert(*sbuffer != NULL || buffer != NULL)) return 0; |