From ee6723a05de45f4a82d72c2f30f562d311b8b841 Mon Sep 17 00:00:00 2001 From: Vadim Kurland Date: Sun, 29 May 2011 21:49:18 -0700 Subject: [PATCH] fixes #2429 fixed common error message shown when importer could not create firewall object --- src/import/Importer.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/import/Importer.cpp b/src/import/Importer.cpp index efdfcb366..a1597810c 100644 --- a/src/import/Importer.cpp +++ b/src/import/Importer.cpp @@ -875,10 +875,10 @@ QString Importer::commonFailureErrorMessage() "file you are trying to import is in one of supported " "formats. Currently fwbuilder can only import " "iptables configuration saved with " - "'iptables-restore' command and Cisco routers (IOS) " - "configurations saved with 'show run' command. Import " - "of cisco ASA (PIX) configuration is not supported " - "at this time"); + "'iptables-restore' command, Cisco routers (IOS), " + "Cisco ASA, FWSM and PIX configurations saved with " + "'show run' command and PF configuration from a pf.conf file." + ); } void Importer::addMessageToLog(const std::string &msg)