2016-09-27
2016-09-27 11:38:07 by Anders Johansson <anders@roxen.com>
-
0c7a1e6bcbf9f7dd7cc39b09d4ecb0bf5ecddef5
(15 lines)
(+8/-7)
[
Show
| Annotate
]
Branch: devel
Updated locale ids
2602: Inside #if constant(Standards.X509)
if( catch{ raw_cert = lopen(pem_file, "r")->read(); } )
{
CERT_WARNING (conf_var,
- LOC_M(8, "Reading PEM file %O failed: %s\n"),
+ LOC_M(66, "Reading PEM file %O failed: %s\n"),
pem_file, strerror (errno()));
return;
}
2613: Inside #if constant(Standards.X509)
if (stringp(msg)) {
if (String.trim_all_whites(msg) != "") {
CERT_WARNING(conf_var,
- LOC_M(0, "Invalid PEM in %O.\n"),
+ LOC_M(67, "Invalid PEM in %O.\n"),
pem_file);
}
continue;
2626: Inside #if constant(Standards.X509)
};
if (err) {
CERT_WARNING(conf_var,
- LOC_M(0, "Invalid decryption password for %O.\n"),
+ LOC_M(68, "Invalid decryption password for %O.\n"),
pem_file);
}
}
2650: Inside #if constant(Standards.X509)
Crypto.Sign key = Standards.X509.parse_private_key(body);
if (!key) {
CERT_ERROR (conf_var,
- LOC_M(11,"Private key not valid")+" (DER).\n");
+ LOC_M(69,"Private key not valid")+" (DER).\n");
return;
}
decoded_keys += ({ key });
2746: Inside #if constant(Standards.X509)
}
if (!found) {
CERT_ERROR (KeyFile,
- LOC_M(14, "Private key without matching certificate.\n"));
+ LOC_M(70, "Private key without matching certificate.\n"));
continue;
}
}
2755: Inside #if constant(Standards.X509) and #if 0
// FIXME: How do this in current Pike 8.0?
if (!sizeof(ctx->cert_pairs)) {
CERT_ERROR(Certificates,
- LOC_M(0,"No matching keys and certificates found.\n"));
+ LOC_M(71,"No matching keys and certificates found.\n"));
report_error ("TLS port %s: %s", get_url(),
- LOC_M(0,"No matching keys and certificates found.\n"));
+ LOC_M(71,"No matching keys and certificates found.\n"));
cert_err_unbind();
cert_failure = 1;
return;