22 January 2026: Wouter
- Fix that fast reload copies the iter_scrub_ns, iter_scrub_cname
and max_global_quota options.
+ - Fix http test tool petal to not print errors when there is no
+ error.
21 January 2026: Wouter
- Merge #1388: QNX Porting support for unbound.
if(verb>=2) printf("read: %s\n", buf);
if(buf[0] == 0) {
int e = ERR_peek_error();
- printf("error string: %s\n", ERR_reason_error_string(e));
+ if(e)
+ printf("error string: %s\n", ERR_reason_error_string(e));
return 1;
}
if(!process_one_header(buf, file, flen, host, hlen, vs))
#endif
if(!SSL_CTX_use_certificate_chain_file(ctx, cert)) {
int e = ERR_peek_error();
- printf("error string: %s\n", ERR_reason_error_string(e));
+ if(e)
+ printf("error string: %s\n", ERR_reason_error_string(e));
print_exit("cannot read cert");
}
if(!SSL_CTX_use_PrivateKey_file(ctx, key, SSL_FILETYPE_PEM))