diff options
Diffstat (limited to 'completions/hping2')
-rw-r--r-- | completions/hping2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/completions/hping2 b/completions/hping2 index 9d454622..6344ed73 100644 --- a/completions/hping2 +++ b/completions/hping2 @@ -11,7 +11,7 @@ _hping2() return ;; -a|--spoof) - _known_hosts_real "$cur" + _known_hosts_real -- "$cur" return ;; -o|--tos) @@ -27,7 +27,7 @@ _hping2() if [[ "$cur" == -* ]]; then COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) ) else - _known_hosts_real "$cur" + _known_hosts_real -- "$cur" fi } && complete -F _hping2 hping hping2 hping3 |