Removed more #ifdef clauses related to legacy ClamAV version support.

Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
pull/24/head
Mavridis Philippe 3 years ago
parent 9fa764558c
commit 719d2f66db
No known key found for this signature in database
GPG Key ID: F8D2D7E2F989A494

@ -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;

Loading…
Cancel
Save