int print_param_types(const char *thing, const OSSL_PARAM *pdefs, int indent)
{
if (pdefs == NULL) {
- BIO_printf(bio_out, "%*sNo declared %s\n", indent, " ", thing);
+ BIO_printf(bio_out, "%*sNo declared %s\n", indent, "", thing);
} else if (pdefs->key == NULL) {
/*
* An empty list? This shouldn't happen, but let's just make sure to
* say something if there's a badly written provider...
*/
- BIO_printf(bio_out, "%*sEmpty list of %s (!!!)\n", indent, " ", thing);
+ BIO_printf(bio_out, "%*sEmpty list of %s (!!!)\n", indent, "", thing);
} else {
- BIO_printf(bio_out, "%*s%s:\n", indent, " ", thing);
+ BIO_printf(bio_out, "%*s%s:\n", indent, "", thing);
for (; pdefs->key != NULL; pdefs++) {
char buf[200]; /* This should be ample space */
describe_param_type(buf, sizeof(buf), pdefs);
- BIO_printf(bio_out, "%*s %s\n", indent, " ", buf);
+ BIO_printf(bio_out, "%*s %s\n", indent, "", buf);
}
}
return 1;
if (meta->first) {
if (meta->total > 0)
BIO_printf(bio_out, "\n");
- BIO_printf(bio_out, "%*s%ss:", meta->indent, " ", meta->label);
+ BIO_printf(bio_out, "%*s%ss:", meta->indent, "", meta->label);
}
BIO_printf(bio_out, " %s", info->name);
break;
case 3:
default:
- BIO_printf(bio_out, "%*s%s %s\n", meta->indent, " ", meta->label,
+ BIO_printf(bio_out, "%*s%s %s\n", meta->indent, "", meta->label,
info->name);
print_param_types("retrievable algorithm parameters",
info->gettable_params, meta->subindent);