alphacpuid.pl: fix brown-bag bug [from HEAD].
[oweals/openssl.git] / doc / crypto / DSA_set_method.pod
index 9bd9ad3ee87c57ecc0d5ca8a848de5211604df84..9c1434bd8d429630e6ac2534fa3fcc86c5db5413 100644 (file)
@@ -8,6 +8,7 @@ DSA_set_method, DSA_new_method, DSA_OpenSSL - select DSA method
 =head1 SYNOPSIS
 
  #include <openssl/dsa.h>
+ #include <openssl/engine.h>
 
  void DSA_set_default_method(const DSA_METHOD *meth);
 
@@ -15,7 +16,7 @@ DSA_set_method, DSA_new_method, DSA_OpenSSL - select DSA method
 
  int DSA_set_method(DSA *dsa, const DSA_METHOD *meth);
 
- DSA *DSA_new_method(DSA_METHOD *meth);
+ DSA *DSA_new_method(ENGINE *engine);
 
  DSA_METHOD *DSA_OpenSSL(void);
 
@@ -35,7 +36,7 @@ structures created later. B<NB>: This is true only whilst no ENGINE has
 been set as a default for DSA, so this function is no longer recommended.
 
 DSA_get_default_method() returns a pointer to the current default
-DSA_METHOD. However, the meaningfulness of this result is dependant on
+DSA_METHOD. However, the meaningfulness of this result is dependent on
 whether the ENGINE API is being used, so this function is no longer 
 recommended.