phpDynDNS.inc: Fix missing break statement in switch case for Linode

Commit ab0ccc3be9 seems to have mistakenly
removed the `break` statement for the `switch` case for Linode. This
commit adds it back, which fixes dynamic DNS updates for Linode.

Signed-off-by: Andrew Gunnerson <chillermillerlong@hotmail.com>
This commit is contained in:
Andrew Gunnerson
2020-02-25 15:31:39 +01:00
committed by Franco Fichtner
parent c5a1daa706
commit 843644393d
@@ -97,8 +97,8 @@
* dynv6 v6 - Last Tested: 25 June 2019
* DigitalOcean - Last Tested: 25 June 2019
* Azure DNS - Last Tested: 16 October 2019
* Linode - Last Tested: 12 November 2019
* Linode v6 - Last Tested: 12 November 2019
* Linode - Last Tested: 25 February 2020
* Linode v6 - Last Tested: 25 February 2020
* +====================================================+
*
* @author E.Kristensen
@@ -990,6 +990,7 @@ class updatedns
} else {
log_error("Dynamic DNS($fqdn): No zone found for domain");
}
break;
case 'azurev6':
case 'azure':
$hostname = "{$this->_dnsHost}";