From 719d2f66dbdf7a70b084529acc888269a1743c1b Mon Sep 17 00:00:00 2001 From: Mavridis Philippe Date: Mon, 25 Jan 2021 15:07:25 +0200 Subject: Removed more #ifdef clauses related to legacy ClamAV version support. Signed-off-by: Mavridis Philippe --- src/dbviewer.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src') diff --git a/src/dbviewer.cpp b/src/dbviewer.cpp index d9aa50a..c61f2d4 100644 --- a/src/dbviewer.cpp +++ b/src/dbviewer.cpp @@ -794,21 +794,15 @@ unsigned int KlamDB::getSigNos() lastDownloadPaths = config->readListEntry("lastDownloadPaths"); dbdir = lastDownloadPaths.first(); -#ifdef SUPPORT_CLAMAV_V095 if((engine = cl_engine_new()) == NULL) { printf("Database initialization error: %s\n", cl_strerror(ret));; cl_engine_free(engine); return 0; } -#endif -#ifdef SUPPORT_CLAMAV_V095 ret = cl_load((const char *)dbdir, engine, &no, CL_DB_STDOPT); cl_engine_free(engine); -#else - ret = cl_load((const char *)dbdir, &engine, &no, CL_DB_STDOPT); - cl_free(engine); -#endif + kdDebug() << "no of sigs" << no << endl; return no; -- cgit v1.2.1