diff --git a/build_num b/build_num index d76fb71f0..487db88f5 100644 --- a/build_num +++ b/build_num @@ -1 +1 @@ -#define BUILD_NUM 3311 +#define BUILD_NUM 3312 diff --git a/doc/ChangeLog b/doc/ChangeLog index efc0d544f..780b04808 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,5 +1,10 @@ 2010-10-04 Vadim Kurland + * 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. diff --git a/src/gui/SSHCisco.cpp b/src/gui/SSHCisco.cpp index 617f403f0..21d9e3f7e 100644 --- a/src/gui/SSHCisco.cpp +++ b/src/gui/SSHCisco.cpp @@ -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();