From 1ea03f7b949d9451759c3218dec053374674f92c Mon Sep 17 00:00:00 2001 From: Alexander Leisentritt Date: Mon, 26 Jun 2017 00:34:01 +0200 Subject: [PATCH] remove curl option "anyauth" for "custom" and "customv6" DynDNS updates as discussed in #188 --- dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc | 1 - 1 file changed, 1 deletion(-) diff --git a/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc b/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc index a31790709..6ced5a0cc 100644 --- a/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc +++ b/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc @@ -608,7 +608,6 @@ class updatedns { curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, TRUE); else curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); - curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY); curl_setopt($ch, CURLOPT_USERPWD, "{$this->_dnsUser}:{$this->_dnsPass}"); } $server = str_replace("%IP%", $this->_dnsIP, $this->_dnsUpdateURL);