1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-22 19:27:13 +01:00

bug 2154906

This commit is contained in:
Vadim Kurland 2008-10-10 15:29:55 +00:00
parent e775e585b6
commit edaf5aea24
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2008-10-10 Vadim Kurland <vadim@vk.crocodile.org>
* iosacl.cpp (main): fixed bug #2154906 "Post script is missing /
Cisco ACL handling". Prolog/epilog sections were not added to the
generated script for Cisco IOS ACLs.
2008-10-09 vadim <vadim@vk.crocodile.org>
* ipt.cpp (main): Compiler for iptables uses QT functions to

View File

@ -475,7 +475,7 @@ int main(int argc, char * const * argv)
ofile << "! Prolog script:" << endl;
ofile << "!" << endl;
string pre_hook= fw->getOptionsObject()->getStr("ios_prolog_script");
string pre_hook= fw->getOptionsObject()->getStr("iosacl_prolog_script");
ofile << pre_hook << endl;
ofile << "!" << endl;
@ -495,7 +495,7 @@ int main(int argc, char * const * argv)
ofile << "! Epilog script:" << endl;
ofile << "!" << endl;
string post_hook= fw->getOptionsObject()->getStr("ios_epilog_script");
string post_hook= fw->getOptionsObject()->getStr("iosacl_epilog_script");
ofile << post_hook << endl;
ofile << endl;