From: Antonio Ospite <ao2@ao2.it>
Date: Thu, 26 Apr 2018 12:56:40 +0000 (+0200)
Subject: nftables-workstation.nft: remove unneeded semicolons
X-Git-Url: https://git.ao2.it/config/nftables.git/commitdiff_plain/ed04a7f82c3cb040cab63414d1d7265b6f508de9?ds=inline;hp=d684d1e527c3554ae88b01d215d3a07d7606cbad

nftables-workstation.nft: remove unneeded semicolons
---

diff --git a/nftables-workstation.nft b/nftables-workstation.nft
index fd227f5..7261291 100644
--- a/nftables-workstation.nft
+++ b/nftables-workstation.nft
@@ -39,7 +39,7 @@ table inet filter {
     }
 
     chain input {
-        type filter hook input priority 0;
+        type filter hook input priority 0
 
         ct state established,related accept
         ct state invalid drop
@@ -123,13 +123,13 @@ table inet filter {
     }
 
     chain forward {
-        type filter hook forward priority 0;
+        type filter hook forward priority 0
         limit rate 3/minute burst 10 packets log prefix "[FORWARD]: "
         counter reject
     }
 
     chain output {
-        type filter hook output priority 0;
+        type filter hook output priority 0
         counter accept
     }
 }