*/
for (thisexd = ext_defs, i = 0; i < OSSL_NELEM(ext_defs);
i++, thisexd++) {
- if (thisexd->init != NULL && (thisexd->context & context) != 0 &&
- extension_is_relevant(s, thisexd->context, context) &&
- !thisexd->init(s, context)) {
+ if (thisexd->init != NULL && (thisexd->context & context) != 0
+ && extension_is_relevant(s, thisexd->context, context)
+ && !thisexd->init(s, context)) {
*al = SSL_AD_INTERNAL_ERROR;
goto err;
}
*/
for (i = 0, thisexd = ext_defs; i < OSSL_NELEM(ext_defs);
i++, thisexd++) {
- if (thisexd->final != NULL && (thisexd->context & context) != 0 &&
- !thisexd->final(s, context, exts[i].present, al))
+ if (thisexd->final != NULL && (thisexd->context & context) != 0
+ && !thisexd->final(s, context, exts[i].present, al))
return 0;
}
}