diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-11-04 00:05:02 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-11-04 00:05:02 +0000 |
commit | e57abefbbc305afd4cfedbf8966412b36f247998 (patch) | |
tree | aeffdb9175b0821b507f3f1211f235b913f2f2f6 | |
parent | Changelog note about Windows build (diff) | |
download | openvpn-e57abefbbc305afd4cfedbf8966412b36f247998.tar.xz |
svn merge -r 770:771 $SO/trunk/openvpn
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@772 e7ae566f-a301-0410-adde-c780ea21d3b5
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | helper.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -5,6 +5,9 @@ $Id$ 2005.11.xx -- Version 2.1-beta7 +* Fixed bug where --server directive in --dev tap mode + claimed that it would support subnets of /30 or less + but actually would only accept /29 or less. * Fixed bug in Linux get_default_gateway function introduced in 2.0.4, which would cause redirect-gateway on Linux clients to fail. @@ -253,7 +253,7 @@ helper_client_server (struct options *o) } else if (dev == DEV_TYPE_TAP) { - if (netbits >= 30) + if (netbits > 30) msg (M_USAGE, "--server directive when used with --dev tap must define a subnet of %s or lower", print_netmask (30, &gc)); |