Use long options for mount.

This commit is contained in:
Andrius Štikonas 2016-05-13 23:13:22 +01:00
parent 1dfe304fd2
commit c6c31dc5c0
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ bool luks::mount(Report& report, const QString& deviceNode, const QString& mount
ExternalCommand mountCmd(
report,
QStringLiteral("mount"),
{ QStringLiteral("-v"), mapperNode, mountPoint });
{ QStringLiteral("--verbose"), mapperNode, mountPoint });
if (mountCmd.run() && mountCmd.exitCode() == 0)
{
m_isMounted = true;