From 6e18c223b2c9e5b598298824dd775117218b0c94 Mon Sep 17 00:00:00 2001 From: Mavridis Philippe Date: Wed, 10 Feb 2021 21:47:48 +0200 Subject: [PATCH] Made clamdscan use the --fdpass option. This option is recommended as it is faster and permits to scan other users' files. For a more detailed description see clamdscan(1). Signed-off-by: Mavridis Philippe --- src/scanviewer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scanviewer.cpp b/src/scanviewer.cpp index 83228c4..565ddea 100644 --- a/src/scanviewer.cpp +++ b/src/scanviewer.cpp @@ -489,7 +489,7 @@ void ScanViewer::slotScan(const TQStringList & filepattern, int mode, bool recur config->setGroup("KlamavBackend"); TQString multiscanOption = config->readBoolEntry("ClamdMultiscan", true) ? " -m " : ""; - kdDebug() << "clamdscan -v " + kdDebug() << "clamdscan -v --fdpass " << multiscanOption << "'" + m_filepattern.join("' '") + "'" << endl;