From 6bccf4caa7cf4203ac06c3dfd4550d35803acf80 Mon Sep 17 00:00:00 2001 From: smos Date: Mon, 10 May 2010 12:54:56 +0200 Subject: [PATCH] Make sure to send the hostname as part of the openDNS update process Fix ticket #552 --- etc/inc/dyndns.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/inc/dyndns.class b/etc/inc/dyndns.class index 29011fb2ad..bf442fb0ad 100644 --- a/etc/inc/dyndns.class +++ b/etc/inc/dyndns.class @@ -375,7 +375,7 @@ if (isset($this->_dnsWildcard) && $this->_dnsWildcard != "OFF") $this->_dnsWildcard = "ON"; curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_USERPWD, $this->_dnsUser.':'.$this->_dnsPass); - $server = "https://updates.opendns.com/nic/update?hostname="; + $server = "https://updates.opendns.com/nic/update?hostname=". $this->_dnsHost; $port = ""; if($this->_dnsServer) $server = $this->_dnsServer;