From: Michael Tremer Date: Sun, 21 Jun 2009 17:12:03 +0000 (+0200) Subject: firewall: Fixed invocation of sqlite. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc4f9849f8404585d75e1a3c82d92e0a29c42c66;p=ipfire-3.x.git firewall: Fixed invocation of sqlite. --- diff --git a/src/firewall/functions.macros b/src/firewall/functions.macros index 2abe81a12..2ea6f37c0 100644 --- a/src/firewall/functions.macros +++ b/src/firewall/functions.macros @@ -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