diff options
| author | Arne Schwabe <arne@rfc2549.org> | 2014-02-03 20:46:22 +0100 | 
|---|---|---|
| committer | Arne Schwabe <arne@rfc2549.org> | 2014-02-03 20:46:22 +0100 | 
| commit | de196596a6f93c797e4332c8dc463ccb90ece3f5 (patch) | |
| tree | abcd4ec4ccc757cec93cb66a0a87263994c7763d | |
| parent | e579f36f791ab2de49fcf35e3954a3d650011c0d (diff) | |
fix fairly stupid bug with custom routes
| -rw-r--r-- | src/de/blinkt/openvpn/VpnProfile.java | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java index 55a7d3e3..215efe78 100644 --- a/src/de/blinkt/openvpn/VpnProfile.java +++ b/src/de/blinkt/openvpn/VpnProfile.java @@ -325,7 +325,7 @@ public class VpnProfile implements Serializable {              routes += "route 0.0.0.0 0.0.0.0 vpn_gateway\n";          else              for (String route : getCustomRoutes()) { -                routes += "route " + route + "vpn_gateway\n"; +                routes += "route " + route + " vpn_gateway\n";                  numroutes++;              } | 
