just code formatting and killed whitespace

This commit is contained in:
Daniel Stenberg 2004-05-19 09:24:18 +00:00
parent a94e117ede
commit 7e186f9a63
1 changed files with 34 additions and 34 deletions

View File

@ -23,14 +23,14 @@ typedef struct sslctxparm_st {
CURL* curl;
int accesstype;
unsigned char * accessinfoURL;
} sslctxparm;
static unsigned char *i2s_ASN1_IA5STRING( ASN1_IA5STRING *ia5)
{
unsigned char *tmp;
if(!ia5 || !ia5->length) return NULL;
if(!ia5 || !ia5->length)
return NULL;
tmp = OPENSSL_malloc(ia5->length + 1);
memcpy(tmp, ia5->data, ia5->length);
tmp[ia5->length] = 0;