1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-23 19:57:21 +01:00

fixed #1784 added Cisco ASA (PIX) error

message "cannot add route entry" to the list of errors that
built-in installer recognizes and marks install process as
"Failure".
This commit is contained in:
Vadim Kurland 2010-10-04 22:22:58 +00:00
parent e899075231
commit d845c3f0ea
3 changed files with 9 additions and 2 deletions

View File

@ -1 +1 @@
#define BUILD_NUM 3311
#define BUILD_NUM 3312

View File

@ -1,5 +1,10 @@
2010-10-04 Vadim Kurland <vadim@vk.crocodile.org>
* SSHCisco.cpp (SSHCisco): fixed #1784 added Cisco ASA (PIX) error
message "cannot add route entry" to the list of errors that
built-in installer recognizes and marks install process as
"Failure".
* newFirewallDialog.cpp (showPage): fixed #1767 improved UI in the
new firewall and new host dialogs where user chooses file for the
custom template library or uses standard template library.

View File

@ -85,7 +85,9 @@ SSHCisco::SSHCisco(QWidget *_par,
errorsEnabledState.push_back("Invalid");
errorsEnabledState.push_back("invalid");
errorsEnabledState.push_back("cannot find");
errorsEnabledState.push_back("An object-group with the same id but different type");
errorsEnabledState.push_back(
"An object-group with the same id but different type");
errorsEnabledState.push_back("cannot add route entry");
local_event_loop = new QEventLoop();