diff options
author | Richard Levitte <levitte@openssl.org> | 2019-04-05 10:58:16 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2019-04-05 12:50:55 +0200 |
commit | 71849dff56d62802bef11b0643446588ae25122e (patch) | |
tree | 5271db15e0b5d6e0502da989ca00ce7d5b472e72 /crypto/trace.c | |
parent | OPENSSL_init_crypto(): check config return code correctly (diff) | |
download | openssl-71849dff56d62802bef11b0643446588ae25122e.tar.xz openssl-71849dff56d62802bef11b0643446588ae25122e.zip |
Rename the PROVIDER_CONF trace to CONF
Other configuration modules may have use for tracing, and having one
tracing category for each of them is a bit much. Instead, we make one
category for them all.
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/8680)
Diffstat (limited to 'crypto/trace.c')
-rw-r--r-- | crypto/trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/trace.c b/crypto/trace.c index c9623b0fde..ac383fac9a 100644 --- a/crypto/trace.c +++ b/crypto/trace.c @@ -132,7 +132,7 @@ static const struct trace_category_st trace_categories[] = { TRACE_CATEGORY_(PKCS12_DECRYPT), TRACE_CATEGORY_(X509V3_POLICY), TRACE_CATEGORY_(BN_CTX), - TRACE_CATEGORY_(PROVIDER_CONF), + TRACE_CATEGORY_(CONF), }; const char *OSSL_trace_get_category_name(int num) |