diff options
author | Mavridis Philippe <[email protected]> | 2021-02-10 21:47:48 +0200 |
---|---|---|
committer | Mavridis Philippe <[email protected]> | 2021-02-10 21:47:48 +0200 |
commit | 6e18c223b2c9e5b598298824dd775117218b0c94 (patch) | |
tree | c5f59c25d7661a29d0a990e72c203b6b38e2a93c | |
parent | 26b1152b0d88989cbb547889efb8328cbdf0bb70 (diff) | |
download | klamav-6e18c223b2c9e5b598298824dd775117218b0c94.tar.gz klamav-6e18c223b2c9e5b598298824dd775117218b0c94.zip |
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 <[email protected]>
-rw-r--r-- | src/scanviewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |