summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-02-18 16:28:00 +0100
committerRichard Levitte <levitte@openssl.org>2019-02-19 09:41:09 +0100
commit4ce738d083a377e0788e5d6cf92e3756d436b2f4 (patch)
treea766615578f55819153edffa42877c991e20468e
parent4e1819a9a6abe43a8923c227c85b287f87224bad (diff)
Fixup internal documentation
There were some faults that got caught by the updated doc-nits Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/8270)
-rw-r--r--doc/internal/man3/DEFINE_SPARSE_ARRAY_OF.pod2
-rw-r--r--doc/internal/man3/OSSL_METHOD_STORE.pod7
-rw-r--r--doc/internal/man3/openssl_ctx_get_data.pod7
3 files changed, 7 insertions, 9 deletions
diff --git a/doc/internal/man3/DEFINE_SPARSE_ARRAY_OF.pod b/doc/internal/man3/DEFINE_SPARSE_ARRAY_OF.pod
index 099f7a69e6..c36472aa7d 100644
--- a/doc/internal/man3/DEFINE_SPARSE_ARRAY_OF.pod
+++ b/doc/internal/man3/DEFINE_SPARSE_ARRAY_OF.pod
@@ -9,6 +9,8 @@ ossl_sa_TYPE_doall_arg, ossl_sa_TYPE_get, ossl_sa_TYPE_set
=head1 SYNOPSIS
+=for comment generic
+
#include "internal/sparse_array.h"
typedef struct sparse_array_st OPENSSL_SA;
diff --git a/doc/internal/man3/OSSL_METHOD_STORE.pod b/doc/internal/man3/OSSL_METHOD_STORE.pod
index 70a3195f4e..25cf56e0c3 100644
--- a/doc/internal/man3/OSSL_METHOD_STORE.pod
+++ b/doc/internal/man3/OSSL_METHOD_STORE.pod
@@ -2,9 +2,10 @@
=head1 NAME
-ossl_method_store_new, ossl_method_store_free, ossl_method_store_init,
-ossl_method_store_cleanup, ossl_method_store_add, ossl_method_store_remove,
-ossl_method_store_fetch, ossl_method_store_set_global_properties,
+OSSL_METHOD_STORE, ossl_method_store_new, ossl_method_store_free,
+ossl_method_store_init, ossl_method_store_cleanup,
+ossl_method_store_add, ossl_method_store_remove, ossl_method_store_fetch,
+ossl_method_store_set_global_properties,
ossl_method_store_cache_get, ossl_method_store_cache_set
- implementation method store and query
diff --git a/doc/internal/man3/openssl_ctx_get_data.pod b/doc/internal/man3/openssl_ctx_get_data.pod
index b2613bdf23..ee98dc2733 100644
--- a/doc/internal/man3/openssl_ctx_get_data.pod
+++ b/doc/internal/man3/openssl_ctx_get_data.pod
@@ -2,18 +2,13 @@
=head1 NAME
-openssl_ctx_new_index, openssl_ctx_free_index,
-openssl_ctx_new_fn, openssl_ctx_free_fn,
-openssl_ctx_set_data, openssl_ctx_get_data - internal OPENSSL_CTX routines
+openssl_ctx_new_index, openssl_ctx_get_data - internal OPENSSL_CTX routines
=head1 SYNOPSIS
#include <openssl/ossl_typ.h>
#include "internal/cryptlib.h"
- typedef CRYPTO_EX_new openssl_ctx_new_fn;
- typedef CRYPTO_EX_free openssl_ctx_free_fn;
-
typedef struct openssl_ctx_method {
void *(*new_func)(void);
void (*free_func)(void *);