summaryrefslogtreecommitdiffstats
path: root/src/openvpn/tun.c
diff options
context:
space:
mode:
authorJosh Cepek <josh.cepek@usa.net>2013-08-21 16:20:30 -0500
committerGert Doering <gert@greenie.muc.de>2013-08-22 18:33:06 +0200
commit2d34628af995676c8ecddb953897c334b96a6a6b (patch)
tree8084103d4fd174269e95829d2d5b71dede64c839 /src/openvpn/tun.c
parent6481f879eb62cafa6ad652801b2b5c45e546ef44 (diff)
downloadopenvpn-2d34628af995676c8ecddb953897c334b96a6a6b.tar.gz
openvpn-2d34628af995676c8ecddb953897c334b96a6a6b.tar.xz
openvpn-2d34628af995676c8ecddb953897c334b96a6a6b.zip
Correct error text when no Windows TAP device is present
Starting with the 2.3-series, the TAP-Windows driver/utilities and OpenVPN are separately installed components. The error message given to users without available TAP devices uses the pre-2.3 path that does not exist. The path should be listed under the TAP-Windows program group that the tap-windows project installer uses. Resolves bug #320 Signed-off-by: Josh Cepek <josh.cepek@usa.net> Acked-by: David Sommerseth <dazo@users.sourceforge.net> Message-Id: <kv4ece$s8s$1@ger.gmane.org> URL: http://article.gmane.org/gmane.network.openvpn.devel/7825 Signed-off-by: Gert Doering <gert@greenie.muc.de>
Diffstat (limited to 'src/openvpn/tun.c')
-rw-r--r--src/openvpn/tun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvpn/tun.c b/src/openvpn/tun.c
index f0ea2c4..86a43f2 100644
--- a/src/openvpn/tun.c
+++ b/src/openvpn/tun.c
@@ -3403,7 +3403,7 @@ static void
at_least_one_tap_win (const struct tap_reg *tap_reg)
{
if (!tap_reg)
- msg (M_FATAL, "There are no TAP-Windows adapters on this system. You should be able to create a TAP-Windows adapter by going to Start -> All Programs -> " PACKAGE_NAME " -> Add a new TAP-Windows virtual ethernet adapter.");
+ msg (M_FATAL, "There are no TAP-Windows adapters on this system. You should be able to create a TAP-Windows adapter by going to Start -> All Programs -> TAP-Windows -> Utilities -> Add a new TAP-Windows virtual ethernet adapter.");
}
/*