diff --git a/Shorewall-core/lib.cli b/Shorewall-core/lib.cli index 47b652f24..74be1efa1 100644 --- a/Shorewall-core/lib.cli +++ b/Shorewall-core/lib.cli @@ -1546,7 +1546,7 @@ do_dump_command() { } dump_command() { - do_dump_command | dump_filter + do_dump_command $@ | dump_filter } # @@ -3423,7 +3423,7 @@ usage() # $1 = exit status echo " delete [:] ... " echo " disable " echo " drop
..." - echo " dump [ -x ]" + echo " dump [ -x ] [ -l ]" echo " enable " echo " forget [ ]" echo " help" diff --git a/docs/FAQ.xml b/docs/FAQ.xml index 8f5447203..f2ab40c23 100644 --- a/docs/FAQ.xml +++ b/docs/FAQ.xml @@ -3168,5 +3168,16 @@ EXT_IF:192.168.1.1 0.0.0.0/0 192.168.1.254 + +
+ (FAQ 102) What is 'qt'? I see it in some of the older + documentation. + + Answer: 'qt' stands for 'quiet'; + qt() is a shell function that accepts a command with arguments as + parameters. It redirects both standard out and standard error to + /dev/null. It is defined in the Shorewall-core shell library + lib.common. +