1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-20 18:27:16 +01:00

see #2481 added an error message for port "!=" operation. Importer still tries to import the rule but marks it as "bad"

This commit is contained in:
Vadim Kurland 2011-06-06 13:32:22 -07:00
parent b1f1eddc72
commit 9921fe8f78

View File

@ -417,6 +417,13 @@ bool PFImporter::buildTCPUDPObjectSingature(ObjectSignature *sig,
return false;
}
if (port_op == "!=")
{
error_tracker->registerError(
QObject::tr("'Port not equal' operation "
"is not supported yet."));
}
sig->port_range_inclusive = true;
if (source)