From c871ef4acfffe91a49e2b1b814b93d9c2e0708a5 Mon Sep 17 00:00:00 2001 From: Chiradeep Vittal Date: Wed, 17 Nov 2010 15:31:16 -0800 Subject: [PATCH] fix constructor to use passed in value --- core/src/com/cloud/network/FirewallRuleVO.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/com/cloud/network/FirewallRuleVO.java b/core/src/com/cloud/network/FirewallRuleVO.java index 86225d1cfac..cde87e0d55b 100644 --- a/core/src/com/cloud/network/FirewallRuleVO.java +++ b/core/src/com/cloud/network/FirewallRuleVO.java @@ -84,7 +84,8 @@ public class FirewallRuleVO { this.privateIpAddress = privateIpAddress; this.privatePort = privatePort; this.enabled = enabled; - this.protocol = protocol; + this.protocol = protocol; + this.forwarding = forwarding; } public FirewallRuleVO(FirewallRuleVO fwRule) {