Backwards-compatibility subject to OPENSSL_API_COMPAT
[openssl.git] / doc / crypto / BIO_find_type.pod
index cc18c06228d3784e02f4fbc29254913f745a2bc5..6e65668b4c458f0f5051ba39dc6193893ed2b15e 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
-       BIO_find_type, BIO_next - BIO chain traversal
+BIO_find_type, BIO_next, BIO_method_type - BIO chain traversal
 
 =head1 SYNOPSIS
 
@@ -63,19 +63,6 @@ BIO_next() returns the next BIO in a chain.
 
 BIO_method_type() returns the type of the BIO B<b>.
 
-=head1 NOTES
-
-BIO_next() was added to OpenSSL 0.9.6 to provide a 'clean' way to traverse a BIO
-chain or find multiple matches using BIO_find_type(). Previous versions had to
-use:
-
- next = bio->next_bio;
-
-=head1 BUGS
-
-BIO_find_type() in OpenSSL 0.9.5a and earlier could not be safely passed a
-NULL pointer for the B<b> argument.
-
 =head1 EXAMPLE
 
 Traverse a chain looking for digest BIOs: