1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-16 12:21:18 +02:00

unposted: remove spurious reference to nonexistent completion function

This commit is contained in:
Oliver Kiddle 2019-05-23 01:22:50 +02:00
parent 6a0874cad6
commit f702e17b14
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,8 @@
2019-05-23 Oliver Kiddle <okiddle@yahoo.co.uk>
* unposted: Completion/Linux/Command/_iptables: remove spurious
reference to nonexistent completion function
* 44349: Completion/Linux/Command/_cryptsetup,
Completion/X/Command/_x_utils, Completion/Linux/Command/_lsblk,
Completion/Linux/Command/_ss, Completion/Linux/Command/_valgrind,

View file

@ -47,7 +47,7 @@ case ${prev[${prev[(I)-p|--protocol]}+1]}; in
esac
case ${prev[${prev[(I)-j|--jump]}+1]}; in
DNAT) args+=( '(--to --to-destination)'{--to,--to-destination}':address:_users-ports' ) ;;
DNAT) args+=( '(--to --to-destination)'{--to,--to-destination}':address' ) ;;
DSCP)
args+=(
'--set-dscp[set the DSCP field]:value'
@ -67,7 +67,7 @@ case ${prev[${prev[(I)-j|--jump]}+1]}; in
MARK) args+=( '--set-mark[set fwmark in packet]:number' ) ;;
REDIRECT|MASQUERADE) args+=( '--to-ports[port (range) to map to]:port range:_ports' ) ;;
REJECT) args+=( '--reject-with[drop packet and send reply]:reject type:->reject-types' ) ;;
SNAT) args+=( '(--to --to-source)*'{--to,--to-source}'[specify address to map source to]:address:_users-ports' ) ;;
SNAT) args+=( '(--to --to-source)*'{--to,--to-source}'[specify address to map source to]:address' ) ;;
TCPMSS)
args+=(
'--set-mss[explicitly set MSS option]:value'