summaryrefslogtreecommitdiffstats
path: root/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel.c
diff options
context:
space:
mode:
Diffstat (limited to 'veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel.c')
-rw-r--r--veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel.c b/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel.c
index f0e4dea..8bb8a8e 100644
--- a/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel.c
+++ b/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel.c
@@ -70,7 +70,6 @@ char *functional_role = NULL;
* @param topic The optional topic part of the URL (may be NULL).
* @param ring buf size Ring buffer size
* @param secure Whether to use HTTPS (0=HTTP, 1=HTTPS)
- * @param activmode Whether to use ActivStandby(0) collectors or ActiveStandby(1)
* @param cert_file_path Path to client certificate file
* @param key_file_path Path to client key file
* @param ca_info Path to CA cert file
@@ -100,7 +99,6 @@ EVEL_ERR_CODES evel_initialize(const char * const fqdn,
const char * const topic,
int ring_buf_size,
int secure,
- int activmode,
const char * const cert_file_path,
const char * const key_file_path,
const char * const ca_info,
@@ -228,10 +226,12 @@ EVEL_ERR_CODES evel_initialize(const char * const fqdn,
/***************************************************************************/
offset = sprintf(version_string, "%d", EVEL_API_MAJOR_VERSION);
+/******************
if (EVEL_API_MINOR_VERSION != 0)
{
sprintf(version_string + offset, ".%d", EVEL_API_MINOR_VERSION);
}
+**************/
/***************************************************************************/
/* Build a common base of the API URLs. */
@@ -308,7 +308,6 @@ EVEL_ERR_CODES evel_initialize(const char * const fqdn,
bakup_source_ip,
ring_buf_size,
secure,
- activmode,
cert_file_path,
key_file_path,
ca_info,