about summary refs log tree commit diff
path: root/Completion/Linux
diff options
context:
space:
mode:
authorOliver Kiddle <okiddle@yahoo.co.uk>2019-05-23 01:22:50 +0200
committerOliver Kiddle <okiddle@yahoo.co.uk>2019-05-23 01:22:50 +0200
commitf702e17b14d75aa21bff014168fa9048124db286 (patch)
tree1a44a13358a879d6b109855da2fea781217cd3bd /Completion/Linux
parent6a0874cad65d7949b3bcc2b082f9c6d6b9225a2a (diff)
downloadzsh-f702e17b14d75aa21bff014168fa9048124db286.tar.gz
zsh-f702e17b14d75aa21bff014168fa9048124db286.tar.xz
zsh-f702e17b14d75aa21bff014168fa9048124db286.zip
unposted: remove spurious reference to nonexistent completion function
Diffstat (limited to 'Completion/Linux')
-rw-r--r--Completion/Linux/Command/_iptables4
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Linux/Command/_iptables b/Completion/Linux/Command/_iptables
index 43f9f632f..27c801da1 100644
--- a/Completion/Linux/Command/_iptables
+++ b/Completion/Linux/Command/_iptables
@@ -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'