diff options
author | Roy Marples <roy@marples.name> | 2007-12-31 09:26:53 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-12-31 09:26:53 +0000 |
commit | 0a28d694134254b02760b7ca52a303eddbcaa2da (patch) | |
tree | e2eef955dc3be04dcc30f1c68908116c7fdccd61 | |
parent | 409e73bc29e31f9498aa76998b3763e219943c01 (diff) |
iproute2 uses via, not gw
-rw-r--r-- | net.Linux/iproute2.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net.Linux/iproute2.sh b/net.Linux/iproute2.sh index ca9c1566..3fc86208 100644 --- a/net.Linux/iproute2.sh +++ b/net.Linux/iproute2.sh @@ -144,7 +144,7 @@ _add_route() { elif [ "$3" = "gw" ]; then local one=$1 two=$2 shift; shift; shift - set -- "${one}" "${two}" gw "$@" + set -- "${one}" "${two}" via "$@" fi local cmd= have_metric=false |