More evil cast removal.

This commit is contained in:
Ben Laurie
1999-06-03 18:04:04 +00:00
parent 213a75dbf2
commit b4f76582d4
11 changed files with 25 additions and 22 deletions

View File

@@ -113,7 +113,7 @@ static int add_attribute_object(STACK_OF(X509_ATTRIBUTE) *n, char *text,
int max);
static int add_DN_object(X509_NAME *n, char *text, char *def, char *value,
int nid,int min,int max);
static void MS_CALLBACK req_cb(int p,int n,char *arg);
static void MS_CALLBACK req_cb(int p,int n,void *arg);
static int req_fix_data(int nid,int *type,int len,int min,int max);
static int check_end(char *str, char *end);
static int add_oid_section(LHASH *conf);
@@ -513,7 +513,7 @@ bad:
{
if (!EVP_PKEY_assign_RSA(pkey,
RSA_generate_key(newkey,0x10001,
req_cb,(char *)bio_err)))
req_cb,bio_err)))
goto end;
}
else
@@ -1111,7 +1111,7 @@ err:
return(0);
}
static void MS_CALLBACK req_cb(int p, int n, char *arg)
static void MS_CALLBACK req_cb(int p, int n, void *arg)
{
char c='*';