From 65698b95028d01ce50d8f64500e3fc3196a6f9c9 Mon Sep 17 00:00:00 2001 From: pokamest Date: Sun, 3 Jan 2021 15:37:34 +0300 Subject: [PATCH] Fix typo --- client/openvpnprotocol.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/openvpnprotocol.cpp b/client/openvpnprotocol.cpp index db9d67c91..180c27eca 100644 --- a/client/openvpnprotocol.cpp +++ b/client/openvpnprotocol.cpp @@ -121,12 +121,12 @@ bool OpenVpnProtocol::start() } if (!QFileInfo::exists(openVpnExecPath())) { - setLastError("OpeVPN executable does not exist!"); + setLastError("OpenVPN executable does not exist!\n" + openVpnExecPath()); return false; } if (!QFileInfo::exists(configPath())) { - setLastError("OpeVPN config file does not exist!"); + setLastError("OpenVPN config file does not exist!\n" + configPath()); return false; }