summaryrefslogtreecommitdiffstats
path: root/doc/man3/BIO_new.pod
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2017-06-08 15:18:38 -0400
committerRich Salz <rsalz@openssl.org>2017-06-08 15:18:38 -0400
commit1722496fcaa8f2760dd38f7a77ba1256e51e8b7d (patch)
treeb87c2d33d028128fa07d73f781cef7684013bd93 /doc/man3/BIO_new.pod
parent6dad1efef721341c8302717d93615ea03c71ee0b (diff)
Remove doc of non-existent functions
Fix test for "documenting private functions" And add -p flag to doc-nits recipe Mark when things were deprecated, if doc'd as such Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3624)
Diffstat (limited to 'doc/man3/BIO_new.pod')
-rw-r--r--doc/man3/BIO_new.pod17
1 files changed, 8 insertions, 9 deletions
diff --git a/doc/man3/BIO_new.pod b/doc/man3/BIO_new.pod
index 55ed50bb95..2712be0dab 100644
--- a/doc/man3/BIO_new.pod
+++ b/doc/man3/BIO_new.pod
@@ -2,19 +2,18 @@
=head1 NAME
-BIO_new, BIO_up_ref, BIO_free, BIO_vfree, BIO_free_all,
-BIO_set - BIO allocation and freeing functions
+BIO_new, BIO_up_ref, BIO_free, BIO_vfree, BIO_free_all
+- BIO allocation and freeing functions
=head1 SYNOPSIS
#include <openssl/bio.h>
- BIO *BIO_new(const BIO_METHOD *type);
- int BIO_set(BIO *a, const BIO_METHOD *type);
- int BIO_up_ref(BIO *a);
- int BIO_free(BIO *a);
- void BIO_vfree(BIO *a);
- void BIO_free_all(BIO *a);
+ BIO * BIO_new(const BIO_METHOD *type);
+ int BIO_up_ref(BIO *a);
+ int BIO_free(BIO *a);
+ void BIO_vfree(BIO *a);
+ void BIO_free_all(BIO *a);
=head1 DESCRIPTION
@@ -38,7 +37,7 @@ If B<a> is NULL nothing is done.
BIO_new() returns a newly created BIO or NULL if the call fails.
-BIO_set(), BIO_up_ref() and BIO_free() return 1 for success and 0 for failure.
+BIO_up_ref() and BIO_free() return 1 for success and 0 for failure.
BIO_free_all() and BIO_vfree() do not return values.