Skip to content

Commit 78e06cf

Browse files
teknoraverummakynes
authored andcommitted
netfilter: nf_flowtable: fix documentation
In the flowtable documentation there is a missing semicolon, the command as is would give this error: nftables.conf:5:27-33: Error: syntax error, unexpected devices, expecting newline or semicolon hook ingress priority 0 devices = { br0, pppoe-data }; ^^^^^^^ nftables.conf:4:12-13: Error: invalid hook (null) flowtable ft { ^^ Fixes: 19b351f ("netfilter: add flowtable documentation") Signed-off-by: Matteo Croce <[email protected]> Signed-off-by: Pablo Neira Ayuso <[email protected]>
1 parent c22208b commit 78e06cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Documentation/networking/nf_flowtable.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ flowtable and add one rule to your forward chain.
7676

7777
table inet x {
7878
flowtable f {
79-
hook ingress priority 0 devices = { eth0, eth1 };
79+
hook ingress priority 0; devices = { eth0, eth1 };
8080
}
8181
chain y {
8282
type filter hook forward priority 0; policy accept;

0 commit comments

Comments
 (0)