diff --git a/ddclient b/ddclient index 01c94c6..194f2de 100755 --- a/ddclient +++ b/ddclient @@ -1895,7 +1895,7 @@ sub geturl { $request .= "/$url HTTP/1.0\n"; $request .= "Host: $server\n"; - my $auth = encode_base64("${login}:${password}"); + my $auth = encode_base64("${login}:${password}", ""); $request .= "Authorization: Basic $auth\n" if $login || $password; $request .= "User-Agent: ${program}/${version}\n"; $request .= "Connection: close\n"; @@ -2623,10 +2623,6 @@ sub nic_noip_update { $url .= "&myip="; $url .= $ip if $ip; - - print "here..." . $config{$h}{'login'} . " --> " . $config{$h}{'password'} . "\n"; - - my $reply = geturl(opt('proxy'), $url, $config{$h}{'login'}, $config{$h}{'password'}); if (!defined($reply) || !$reply) { failed("updating %s: Could not connect to %s.", $hosts, $config{$h}{'server'});