1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-20 10:17:16 +01:00

* PolicyCompiler_pf_writers.cpp (_printQueue): see #2390 Classify

does not generate "queue" string for rules created in V4.2.1.3538
This completes the fix for the bug #2385.
This commit is contained in:
Vadim Kurland 2011-05-06 18:36:23 -07:00
parent 6fd2d6df2c
commit 880cfb13fc
7 changed files with 12 additions and 6 deletions

View File

@ -7,7 +7,7 @@ FWB_MICRO_VERSION=1
# build number is like "nano" version number. I am incrementing build
# number during development cycle
#
BUILD_NUM="3538"
BUILD_NUM="3539"
VERSION="$FWB_MAJOR_VERSION.$FWB_MINOR_VERSION.$FWB_MICRO_VERSION.$BUILD_NUM"

View File

@ -1,2 +1,2 @@
#define VERSION "4.2.1.3538"
#define VERSION "4.2.1.3539"
#define GENERATION "4.2"

View File

@ -1,3 +1,9 @@
2011-05-06 vadim <vadim@netcitadel.com>
* PolicyCompiler_pf_writers.cpp (_printQueue): see #2390 Classify
does not generate "queue" string for rules created in V4.2.1.3538
This completes the fix for the bug #2385.
2011-05-05 Vadim Kurland <vadim@netcitadel.com>
* FWObjectDatabase_19.xslt: see #2385 "PF action Classify uses

View File

@ -3,7 +3,7 @@
%define name fwbuilder
%define version 4.2.1.3538
%define version 4.2.1.3539
%define release 1
%if "%_vendor" == "MandrakeSoft"

View File

@ -4,6 +4,6 @@ Replaces: fwbuilder (<=4.1.1-1), fwbuilder-common, fwbuilder-bsd, fwbuilder-linu
Priority: extra
Section: checkinstall
Maintainer: vadim@fwbuilder.org
Version: 4.2.1.3538-1
Version: 4.2.1.3539-1
Depends: libqt4-gui (>= 4.3.0), libxml2, libxslt1.1, libsnmp | libsnmp15
Description: Firewall Builder GUI and policy compilers

View File

@ -1,6 +1,6 @@
%define name fwbuilder
%define version 4.2.1.3538
%define version 4.2.1.3539
%define release 1
%if "%_vendor" == "MandrakeSoft"

View File

@ -337,7 +337,7 @@ void PolicyCompiler_pf::PrintRule::_printQueue(PolicyRule *rule)
FWOptions *ruleopt =rule->getOptionsObject();
if (rule->getAction() == PolicyRule::Classify)
compiler->output << "queue " << ruleopt->getStr("classify_str") << " ";
compiler->output << "queue " << ruleopt->getStr("pf_classify_str") << " ";
}
void PolicyCompiler_pf::PrintRule::_printUser(PolicyRule *rule)