[openssl.org #559] X509V3_extensions_print

2003-03-31 Thread Michael Bell via RT
Hi, I tried to output the extensions without a title: X509V3_extensions_print (out, NULL, ci->extensions, 0, 0); The code fails because of the following: 1. title is empty --> indent will not be incremented 2. if (BIO_printf(bp,"%*s",indent, "") <= 0) return 0; This printf tries to print a

[openssl.org #559] X509V3_extensions_print

2003-03-31 Thread Richard Levitte via RT
[EMAIL PROTECTED] - Mon Mar 31 13:12:19 2003]: > The code fails because of the following: > > 1. title is empty --> indent will not be incremented > 2. if (BIO_printf(bp,"%*s",indent, "") <= 0) return 0; > This printf tries to print an empty string. > > Printf returns in this case a zero wh