Fix CI build failures, remove invalid is_valid parameter parsing.
This commit is contained in:
@@ -7,16 +7,4 @@ add_executable(certstore src/cert_store.cpp src/cert_session.cpp)
|
||||
target_include_directories(certstore PRIVATE ${CMAKE_CURRENT_LIST_DIR}/include)
|
||||
target_include_directories(certstore PRIVATE ${SYSTEMD_INCLUDE_DIRS})
|
||||
|
||||
target_link_libraries(certstore dl common
|
||||
maatframe
|
||||
openssl-ssl-static
|
||||
openssl-crypto-static
|
||||
pthread
|
||||
cjson
|
||||
uuid
|
||||
libevent-static
|
||||
MESA_prof_load
|
||||
MESA_handle_logger
|
||||
hiredis-static
|
||||
MESA_field_stat
|
||||
${SYSTEMD_LIBRARIES})
|
||||
target_link_libraries(certstore dl common maatframe openssl-ssl-static openssl-crypto-static pthread uuid libevent-static MESA_prof_load MESA_handle_logger hiredis-static MESA_field_stat cjson ${SYSTEMD_LIBRARIES})
|
||||
|
||||
@@ -45,7 +45,6 @@ struct pxy_obj_keyring
|
||||
char public_algo[CT_STRING_MAX];
|
||||
char v3_ctl[CT_STRING_MAX];
|
||||
int is_send;
|
||||
int is_valid;
|
||||
time_t op_time;
|
||||
atomic64_t ref_cnt;
|
||||
STACK_OF(X509) *stack_ca;
|
||||
|
||||
@@ -2301,12 +2301,6 @@ void keyring_table_new_cb(const char *table_name, const char *key, const char* t
|
||||
pxy_obj->use_hsm = value_int;
|
||||
}
|
||||
|
||||
value_int = keyring_get_value_number(pxy_profile_keyring, "is_valid");
|
||||
if(value_int > 0)
|
||||
{
|
||||
pxy_obj->is_valid = value_int;
|
||||
}
|
||||
|
||||
value_int = keyring_get_value_number(pxy_profile_keyring, "slot_id");
|
||||
if(value_int > 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user