summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2016-07-28 21:15:52 +0200
committerRichard Levitte <levitte@openssl.org>2016-08-02 09:59:23 +0200
commit700b814549c8c158c82466116cfc545b00f647c3 (patch)
tree26d0879de134e62852d75a0bb41535c2a80a99eb /doc
parentcb926df2fa42bd1e396a600ff6212ee4f4e04118 (diff)
Fix some style issues...
extra spacing and 80 cols Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1366)
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/BIO_s_fd.pod2
-rw-r--r--doc/crypto/X509_STORE_set_verify_cb_func.pod2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/crypto/BIO_s_fd.pod b/doc/crypto/BIO_s_fd.pod
index aa7ba363ad..79c4a5999f 100644
--- a/doc/crypto/BIO_s_fd.pod
+++ b/doc/crypto/BIO_s_fd.pod
@@ -73,7 +73,7 @@ occurred.
This is a file descriptor BIO version of "Hello World":
BIO *out;
-
+
out = BIO_new_fd(fileno(stdout), BIO_NOCLOSE);
BIO_printf(out, "Hello World\n");
BIO_free(out);
diff --git a/doc/crypto/X509_STORE_set_verify_cb_func.pod b/doc/crypto/X509_STORE_set_verify_cb_func.pod
index dd21325f74..89135f4e13 100644
--- a/doc/crypto/X509_STORE_set_verify_cb_func.pod
+++ b/doc/crypto/X509_STORE_set_verify_cb_func.pod
@@ -148,7 +148,7 @@ It must return 0 on failure and 1 on success.
I<If no function to get the issuer is provided, the internal default
function will be used instead.>
-X509_STORE_set_get_crl() sets the function to get the crl for a given
+X509_STORE_set_get_crl() sets the function to get the crl for a given
certificate B<x>.
When found, the crl must be assigned to B<*crl>.
This function must return 0 on failure and 1 on success.