Commit 9d22666e authored by FdaSilvaYY's avatar FdaSilvaYY Committed by Rich Salz
Browse files
parent cbddeebe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@

/*
 * Limit to ensure we don't overflow: much greater than
 * anything enountered in practice.
 * anything encountered in practice.
 */

#define NAME_ONELINE_MAX    (1024 * 1024)
+1 −1
Original line number Diff line number Diff line
@@ -686,7 +686,7 @@ int X509v3_addr_is_canonical(IPAddrBlocks *addr)
    int i, j, k;

    /*
     * Empty extension is cannonical.
     * Empty extension is canonical.
     */
    if (addr == NULL)
        return 1;
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ Deprecated:
=head1 DESCRIPTION

The functions described here were used to free the error queue
associated with the current or specificed thread.
associated with the current or specified thread.

They are now deprecated and do nothing, as the OpenSSL libraries now
normally do all thread initialisation and deinitialisation
+1 −1
Original line number Diff line number Diff line
@@ -196,7 +196,7 @@ EVP_EncryptFinal(), EVP_EncryptFinal_ex(), EVP_DecryptFinal() and
EVP_DecryptFinal_ex().

EVP_CIPHER_meth_set_cleanup() sets the function for B<cipher> to do
extra cleanup before the method's privata data structure is cleaned
extra cleanup before the method's private data structure is cleaned
out and freed.
Note that the cleanup function is passed a B<EVP_CIPHER_CTX *>, the
private data structure is then available with
+1 −1
Original line number Diff line number Diff line
@@ -131,7 +131,7 @@ This copy function is called by EVP_MD_CTX_copy() and
EVP_MD_CTX_copy_ex().

EVP_MD_meth_set_cleanup() sets the function for B<md> to do extra
cleanup before the method's privata data structure is cleaned out and
cleanup before the method's private data structure is cleaned out and
freed.
Note that the cleanup function is passed a B<EVP_MD_CTX *>, the
private data structure is then available with EVP_MD_CTX_md_data().
Loading