summaryrefslogtreecommitdiffstats
path: root/tun.c
diff options
context:
space:
mode:
authorAlon Bar-Lev <alon.barlev@gmail.com>2012-02-29 22:11:38 +0200
committerDavid Sommerseth <davids@redhat.com>2012-03-22 22:06:52 +0100
commit8a4eaf5aa6debaca434b1bd2099394724edb31d9 (patch)
treee5058ecd94a6d915971a09bf0727d4b04b4a04ea /tun.c
parent435b02dceee397a630c8fe7f08cbdcac11820e1a (diff)
downloadopenvpn-8a4eaf5aa6debaca434b1bd2099394724edb31d9.tar.gz
openvpn-8a4eaf5aa6debaca434b1bd2099394724edb31d9.tar.xz
openvpn-8a4eaf5aa6debaca434b1bd2099394724edb31d9.zip
cleanup: tun.c: fix incorrect option in message (ip-win32)
Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com> Acked-by: Samuli Seppänen <samuli@openvpn.net> Signed-off-by: David Sommerseth <davids@redhat.com>
Diffstat (limited to 'tun.c')
-rw-r--r--tun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tun.c b/tun.c
index c92c0d7..81b66fb 100644
--- a/tun.c
+++ b/tun.c
@@ -4492,7 +4492,7 @@ dhcp_masq_addr (const in_addr_t local, const in_addr_t netmask, const int offset
msg (M_FATAL, "ERROR: There is a clash between the --ifconfig local address and the internal DHCP server address -- both are set to %s -- please use the --ip-win32 dynamic option to choose a different free address from the --ifconfig subnet for the internal DHCP server", print_in_addr_t (dsa, 0, &gc));
if ((local & netmask) != (dsa & netmask))
- msg (M_FATAL, "ERROR: --tap-win32 dynamic [offset] : offset is outside of --ifconfig subnet");
+ msg (M_FATAL, "ERROR: --ip-win32 dynamic [offset] : offset is outside of --ifconfig subnet");
gc_free (&gc);
return htonl(dsa);