summaryrefslogtreecommitdiff
path: root/apps/crl2p7.c
diff options
context:
space:
mode:
authorlevitte <levitte>2000-06-01 22:15:51 +0000
committerlevitte <levitte>2000-06-01 22:15:51 +0000
commit1f556362dc4aa3ae4ad87da38941d9d16aa54e6d (patch)
tree58b5e41eccc7fb90b0ada59d67f6d48b06e1428e /apps/crl2p7.c
parentd9e0a6ac77a46f743679baada0022ce4c830db10 (diff)
downloadopenssl-1f556362dc4aa3ae4ad87da38941d9d16aa54e6d.tar.gz
There have been a number of complaints from a number of sources that names
like Malloc, Realloc and especially Free conflict with already existing names on some operating systems or other packages. That is reason enough to change the names of the OpenSSL memory allocation macros to something that has a better chance of being unique, like prepending them with OPENSSL_. This change includes all the name changes needed throughout all C files.
Diffstat (limited to 'apps/crl2p7.c')
-rw-r--r--apps/crl2p7.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/crl2p7.c b/apps/crl2p7.c
index 405659167..ebf5fe90e 100644
--- a/apps/crl2p7.c
+++ b/apps/crl2p7.c
@@ -220,7 +220,7 @@ bad:
if (crl != NULL)
{
sk_X509_CRL_push(crl_stack,crl);
- crl=NULL; /* now part of p7 for Freeing */
+ crl=NULL; /* now part of p7 for OPENSSL_freeing */
}
if ((cert_stack=sk_X509_new(NULL)) == NULL) goto end;
@@ -327,7 +327,7 @@ static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile)
ret=count;
end:
- /* never need to Free x */
+ /* never need to OPENSSL_free x */
if (in != NULL) BIO_free(in);
if (sk != NULL) sk_X509_INFO_free(sk);
return(ret);