Skip to content
Snippets Groups Projects
Commit 389f3c71 authored by Roman Khlopkov's avatar Roman Khlopkov 🔜
Browse files

Merge branch 'support-5341++' into 'develop'

support-5341++

See merge request !390
parents faf18dd1 9f90ff6d
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ set(CMAKE_C_STANDARD 11)
SET( CPACK_PACKAGE_NAME "${PROJECT_NAME}")
SET( CPACK_PACKAGE_VERSION_MAJOR 5)
SET( CPACK_PACKAGE_VERSION_MINOR 1)
SET( CPACK_PACKAGE_VERSION_PATCH 7)
SET( CPACK_PACKAGE_VERSION_PATCH 8)
if (CMAKE_TARGET_ARCH MATCHES arm)
SET( CPACK_PACKAGE_ARCHITECTURE "${CMAKE_TARGET_ARCH}")
......
Subproject commit 64fdeb6a1fdc6ab01a73066a4b7769aa935caa0d
Subproject commit ddee5e51d0b99799d1e767044184cc4ba281188f
Subproject commit 56e90a1c953568681730b98d433d0c2f0311140e
Subproject commit 946cf0eb7de076765588aae4580cd9046079f274
......@@ -285,21 +285,15 @@ int main( int argc, const char **argv )
dap_client_init();
// Create and init notify server
size_t l_notify_path_default_size = dap_snprintf(NULL,0,"/tmp/%s-notify",dap_get_appname() )+1;
char * l_notify_path_default = DAP_NEW_SIZE(char,l_notify_path_default_size);
dap_snprintf(l_notify_path_default,l_notify_path_default_size,"/tmp/%s-notify",dap_get_appname() );
if ( dap_notify_server_init() != 0 ){
log_it( L_ERROR, "Can't init notify server module" );
}
if ( dap_chain_global_db_init(g_config) ) {
log_it( L_CRITICAL, "Can't init global db module" );
return -58;
}
//dap_http_client_simple_init( );
if ( dap_datum_mempool_init() ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment