From 9cb68c6e32f29ad5ba00195a164371006e26467a Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 29 Jun 2009 20:45:42 +0000 Subject: - Modified the separators used for CURLOPT_CERTINFO in multi-part outputs. I don't know how they got wrong in the first place, but using this output format makes it possible to quite easily separate the string into an array of multiple items. --- lib/ssluse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ssluse.c b/lib/ssluse.c index a570f7163..ea1e62da1 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -574,7 +574,7 @@ static int x509_name_oneline(X509_NAME *a, char *buf, size_t size) if(!bio_out) return 1; /* alloc failed! */ - rc = X509_NAME_print_ex(bio_out, a, 0, XN_FLAG_SEP_CPLUS_SPC); + rc = X509_NAME_print_ex(bio_out, a, 0, XN_FLAG_SEP_SPLUS_SPC); BIO_get_mem_ptr(bio_out, &biomem); if((size_t)biomem->length < size) -- cgit v1.2.3