Allow whitespace in routing commands, Gentoo bug #200458.
This commit is contained in:
parent
f6033cfb26
commit
8a328b7408
@ -561,17 +561,13 @@ ${routes}"
|
|||||||
eindent
|
eindent
|
||||||
ebegin ${cmd}
|
ebegin ${cmd}
|
||||||
# Work out if we're a host or a net if not told
|
# Work out if we're a host or a net if not told
|
||||||
case "${cmd}" in
|
case ${cmd} in
|
||||||
*" -net "*|*" -host "*) ;;
|
*" -net "*|*" -host "*) ;;
|
||||||
*" netmask "*) cmd="-net ${cmd}" ;;
|
*" netmask "*) cmd="-net ${cmd}" ;;
|
||||||
*)
|
|
||||||
case "${cmd%% *}" in
|
|
||||||
*.*.*.*/32) cmd="-host ${cmd}" ;;
|
*.*.*.*/32) cmd="-host ${cmd}" ;;
|
||||||
*.*.*.*/*|0.0.0.0|default) cmd="-net ${cmd}" ;;
|
*.*.*.*/*|0.0.0.0|default) cmd="-net ${cmd}" ;;
|
||||||
*) cmd="-host ${cmd}" ;;
|
*) cmd="-host ${cmd}" ;;
|
||||||
esac
|
esac
|
||||||
;;
|
|
||||||
esac
|
|
||||||
if ${hidefirstroute} ; then
|
if ${hidefirstroute} ; then
|
||||||
_add_route ${cmd} >/dev/null 2>/dev/null
|
_add_route ${cmd} >/dev/null 2>/dev/null
|
||||||
hidefirstroute=false
|
hidefirstroute=false
|
||||||
|
Loading…
Reference in New Issue
Block a user