Constify d2i, s2i, c2i and r2i functions and other associated

functions and macros.

This change has associated tags: LEVITTE_before_const and
LEVITTE_after_const.  Those will be removed when this change has been
properly reviewed.
This commit is contained in:
Richard Levitte
2004-03-15 23:15:26 +00:00
parent ec37635c94
commit 875a644a90
69 changed files with 331 additions and 245 deletions

View File

@@ -1034,7 +1034,7 @@ static int get_server_finished(SSL *s)
}
/* loads in the certificate from the server */
int ssl2_set_certificate(SSL *s, int type, int len, unsigned char *data)
int ssl2_set_certificate(SSL *s, int type, int len, const unsigned char *data)
{
STACK_OF(X509) *sk=NULL;
EVP_PKEY *pkey=NULL;