Fixing a small logic error

This commit is contained in:
Sander van Harmelen 2015-04-11 17:53:25 +02:00
parent 365251f7a3
commit 8c37a95a5e
1 changed files with 6 additions and 7 deletions

View File

@ -162,15 +162,14 @@ func resourceCloudStackNetworkUpdate(d *schema.ResourceData, meta interface{}) e
// Create a new parameter struct
p := cs.Network.NewUpdateNetworkParams(d.Id())
// Check if the name or display text is changed
if d.HasChange("name") || d.HasChange("display_text") {
// Check if the name is changed
if d.HasChange("name") {
p.SetName(name)
}
// Compute/set the display text
displaytext := d.Get("display_text").(string)
if displaytext == "" {
displaytext = name
}
// Check if the display text is changed
if d.HasChange("display_text") {
p.SetDisplaytext(d.Get("display_text").(string))
}
// Check if the cidr is changed