summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMavridis Philippe <mavridisf@gmail.com>2021-01-15 20:15:37 +0200
committerMavridis Philippe <mavridisf@gmail.com>2021-01-15 20:15:37 +0200
commita8b9461cd5938d7bde7fcccb4cae201cbbad525c (patch)
tree59ee6fcd2a660a406c31600bdebfdf1b29a210a5 /src
parentd523b1c1e830092a0ce2fc5b8b9f4bcc27f04d3d (diff)
downloadklamav-a8b9461cd5938d7bde7fcccb4cae201cbbad525c.tar.gz
klamav-a8b9461cd5938d7bde7fcccb4cae201cbbad525c.zip
Klamscan: Improved 'Cannot mount' error message.
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/directorylist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/directorylist.cpp b/src/directorylist.cpp
index e62e532..6eff239 100644
--- a/src/directorylist.cpp
+++ b/src/directorylist.cpp
@@ -468,7 +468,7 @@ DeviceItem::mountDevice( const TQString & device)
mountpoint = getMountPoint(device);
if(! success || mountpoint == TQString::null ) {
- KMessageBox::sorry( 0, i18n("Cannot mount %1. Please check that you have the permissions needed to mount the device, as well as the needed kernel modules loaded.") );
+ KMessageBox::sorry( 0, i18n("Cannot mount device '%1'. Please check that you have the permissions needed to mount the device, as well as the needed kernel modules loaded.").arg(device) );
}
}