diff options
author | Steven Barth <steven@midlink.org> | 2015-03-19 18:30:02 +0100 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2015-03-19 18:30:02 +0100 |
commit | 2fb3d0e9205e2a4cea38062caefd7251f562866d (patch) | |
tree | d2c9fd84b857910ebac080359e881314fbb3cfe0 | |
parent | d90be1fc63ca18cb348069e9b10181ccb57baa6e (diff) |
add missing argument for ipv4 routes
Signed-off-by: Steven Barth <steven@midlink.org>
-rw-r--r-- | scripts/netifd-proto.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/netifd-proto.sh b/scripts/netifd-proto.sh index b3d5bb5..2a62bda 100644 --- a/scripts/netifd-proto.sh +++ b/scripts/netifd-proto.sh @@ -122,7 +122,7 @@ proto_add_ipv4_route() { local gw="$3" local source="$4" - append PROTO_ROUTE "$target/$mask/$gw///$source" + append PROTO_ROUTE "$target/$mask/$gw///$source/" } proto_add_ipv6_route() { |