Skip to content
This repository has been archived by the owner on Dec 19, 2017. It is now read-only.

Commit

Permalink
Merge pull request #164 from snehaso/network_acl
Browse files Browse the repository at this point in the history
fixed DeleteNetworkEntry
  • Loading branch information
armon committed Dec 8, 2014
2 parents e99a730 + 6e47b61 commit ab65322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ec2/ec2.go
Original file line number Diff line number Diff line change
Expand Up @@ -2799,7 +2799,7 @@ type DeleteNetworkAclEntryResp struct {
func (ec2 *EC2) DeleteNetworkAclEntry(id string, ruleNumber int, egress bool) (resp *DeleteNetworkAclEntryResp, err error) {
params := makeParams("DeleteNetworkAclEntry")
params["NetworkAclId"] = id
params["RuleNumber"] = string(ruleNumber)
params["RuleNumber"] = strconv.Itoa(ruleNumber)
params["Egress"] = strconv.FormatBool(egress)

resp = &DeleteNetworkAclEntryResp{}
Expand Down

0 comments on commit ab65322

Please sign in to comment.