commit 0f23c071de41776cab7e31d1a73397c32f02363d
Author: Thomas Woerner <twoerner@redhat.com>
Date: Thu Jan 16 14:41:17 2014 +0100
firewall-config: Show reject type in overview also if set
diff --git a/src/firewall-config b/src/firewall-config
index 6dff8b3..381a738 100755
--- a/src/firewall-config
+++ b/src/firewall-config
@@ -1426,6 +1426,8 @@ class FirewallConfig(object):
action = _("accept")
elif type(obj.action) == Rich_Reject:
action = _("reject")
+ if obj.action.type != None:
+ action += "\n" + obj.action.type
elif type(obj.action) == Rich_Drop:
action = _("drop")
if obj.action.limit: