[rt-commit] r212 - /redwax-tool/trunk/redwax_openssl.c
rt-commit at redwax.eu
rt-commit at redwax.eu
Sat Feb 22 16:53:22 CET 2025
Author: minfrin at redwax.eu
Date: Sat Feb 22 16:53:21 2025
New Revision: 212
Log:
Use consistent warnings.
Modified:
redwax-tool/trunk/redwax_openssl.c
Modified: redwax-tool/trunk/redwax_openssl.c
==============================================================================
--- redwax-tool/trunk/redwax_openssl.c (original)
+++ redwax-tool/trunk/redwax_openssl.c Sat Feb 22 16:53:21 2025
@@ -1952,7 +1952,7 @@
redwax_openssl_print_errors(r);
redwax_print_error(r,
- "Warning: Could not enable dane for '%s'\n",
+ "filter-verify-tlsa: Could not enable dane for '%s'\n",
r->dane_basename);
return APR_EINVAL;
@@ -3789,7 +3789,7 @@
if (r->cert_out) {
if (!r->certs_out->nelts) {
- redwax_print_error(r, "Warning: no certificate present, skipping pkcs12.\n");
+ redwax_print_error(r, "pkcs12-out: no certificate present, skipping pkcs12.\n");
return APR_ENOENT;
}
else if (r->certs_out->nelts == 1) {
@@ -3814,7 +3814,7 @@
}
else {
- redwax_print_error(r, "Warning: more than one certificate present (%d), skipping pkcs12.\n",
+ redwax_print_error(r, "pkcs12-out: more than one certificate present (%d), skipping pkcs12.\n",
r->certs_out->nelts);
return APR_ENOENT;
}
@@ -3869,7 +3869,7 @@
if (r->key_out) {
if (!r->keys_out->nelts) {
- redwax_print_error(r, "Warning: no key present, skipping pkcs12.\n");
+ redwax_print_error(r, "pkcs12-out: no key present, skipping pkcs12.\n");
return APR_ENOENT;
}
else if (r->keys_out->nelts == 1) {
@@ -3904,7 +3904,7 @@
}
else {
- redwax_print_error(r, "Warning: more than one key present (%d), skipping.\n",
+ redwax_print_error(r, "pkcs12-out: more than one key present (%d), skipping.\n",
r->keys_out->nelts);
return APR_ENOENT;
}
More information about the rt-commit
mailing list