1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-06-24 18:09:40 +02:00

see #2568 "Group name not preserved if group contains host object"; new build 3563

This commit is contained in:
Vadim Kurland
2011-07-11 23:18:17 -07:00
parent c1216252c4
commit 792a783612
6 changed files with 10 additions and 6 deletions

View File

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

View File

@@ -1,2 +1,2 @@
#define VERSION "5.0.0.3562"
#define VERSION "5.0.0.3563"
#define GENERATION "5.0"

View File

@@ -3,7 +3,7 @@
%define name fwbuilder
%define version 5.0.0.3562
%define version 5.0.0.3563
%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: 5.0.0.3562-1
Version: 5.0.0.3563-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 5.0.0.3562
%define version 5.0.0.3563
%define release 1
%if "%_vendor" == "MandrakeSoft"

View File

@@ -57,7 +57,11 @@ string GroupRegistry::getGroupRegistryKey(FWObject *obj)
void GroupRegistry::setGroupRegistryKey(FWObject *obj, const std::string &key)
{
return obj->setStr(".group_registry_key", key);
obj->setStr(".group_registry_key", key);
for (FWObject::iterator i=obj->begin(); i!=obj->end(); i++)
{
setGroupRegistryKey(*i, key);
}
}