mirror of
https://github.com/openssl/openssl.git
synced 2025-04-12 20:30:52 +08:00
apps: remove internal/cryptlib.h include that isn't used
[extended tests] Reviewed-by: Ben Kaduk <kaduk@mit.edu> (Merged from https://github.com/openssl/openssl/pull/13047)
This commit is contained in:
parent
23b2fc0b50
commit
1b4417abb8
@ -7,7 +7,6 @@
|
||||
* https://www.openssl.org/source/license.html
|
||||
*/
|
||||
|
||||
#include <internal/cryptlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
@ -110,8 +109,10 @@ static size_t internal_trace_cb(const char *buf, size_t cnt,
|
||||
|
||||
switch (cmd) {
|
||||
case OSSL_TRACE_CTRL_BEGIN:
|
||||
if (!ossl_assert(!trace_data->ingroup))
|
||||
if (trace_data->ingroup) {
|
||||
BIO_printf(bio_err, "ERROR: tracing already started\n");
|
||||
return 0;
|
||||
}
|
||||
trace_data->ingroup = 1;
|
||||
|
||||
tid = CRYPTO_THREAD_get_current_id();
|
||||
@ -123,14 +124,18 @@ static size_t internal_trace_cb(const char *buf, size_t cnt,
|
||||
BIO_set_prefix(trace_data->bio, buffer);
|
||||
break;
|
||||
case OSSL_TRACE_CTRL_WRITE:
|
||||
if (!ossl_assert(trace_data->ingroup))
|
||||
if (!trace_data->ingroup) {
|
||||
BIO_printf(bio_err, "ERROR: writing when tracing not started\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
ret = BIO_write(trace_data->bio, buf, cnt);
|
||||
break;
|
||||
case OSSL_TRACE_CTRL_END:
|
||||
if (!ossl_assert(trace_data->ingroup))
|
||||
if (!trace_data->ingroup) {
|
||||
BIO_printf(bio_err, "ERROR: finishing when tracing not started\n");
|
||||
return 0;
|
||||
}
|
||||
trace_data->ingroup = 0;
|
||||
|
||||
BIO_set_prefix(trace_data->bio, NULL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user