summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2014-03-06 17:57:58 +0100
committerArne Schwabe <arne@rfc2549.org>2014-03-06 17:57:58 +0100
commit25c069898bedd8d4cdca5c5cc51ab92556e8cdf3 (patch)
tree786e610c43ef93131c9428d3d06e8a0068fce676
parent183fa39cb87ae3d31ee07ef81049cbb7611a4683 (diff)
Fix mistake when adding excluded routes (closes issue #238)
-rw-r--r--main/src/main/java/de/blinkt/openvpn/VpnProfile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/main/java/de/blinkt/openvpn/VpnProfile.java b/main/src/main/java/de/blinkt/openvpn/VpnProfile.java
index d7a0703b..920bad8b 100644
--- a/main/src/main/java/de/blinkt/openvpn/VpnProfile.java
+++ b/main/src/main/java/de/blinkt/openvpn/VpnProfile.java
@@ -332,7 +332,7 @@ public class VpnProfile implements Serializable {
}
for (String route: getCustomRoutes(mExcludedRoutes)) {
- routes += "route " + route + " net_gateway";
+ routes += "route " + route + " net_gateway\n";
}
}