]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
firewall: Fixed invocation of sqlite.
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 21 Jun 2009 17:12:03 +0000 (19:12 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 21 Jun 2009 17:12:03 +0000 (19:12 +0200)
src/firewall/functions.macros

index 2abe81a121dce26930cdfa35ec36a016919f8e11..2ea6f37c0162e064b257e300966eeac8b57a9796 100644 (file)
@@ -33,7 +33,7 @@ function macro() {
        if _config_is_sqlite $file; then
                rules=$(macro_parse $@ < $file)
        else
-               rules=$(sqlite -noheader -column $file | macro_parse $@)
+               rules=$(sqlite3 -noheader -column $file | macro_parse $@)
        fi
 
        while read line <<< ${rules}; do