Commit 7e186f9a authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

just code formatting and killed whitespace

parent a94e117e
Loading
Loading
Loading
Loading
+34 −34
Original line number Diff line number Diff line
@@ -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;