digitalmars.D.learn - strange error with std.net.curl
I am trying to compile next code:
import std.net.curl;
import std.stdio;
void main()
{
writeln(get("https://google.com/"));
}
and got next error
http://www.everfall.com/paste/id.php?y37dr6qmu54h
May 04 2014
On Sunday, 4 May 2014 at 16:40:08 UTC, Suliman wrote:
I am trying to compile next code:
import std.net.curl;
import std.stdio;
void main()
{
writeln(get("https://google.com/"));
}
and got next error
http://www.everfall.com/paste/id.php?y37dr6qmu54h
this is related to verifying certificates. see
http://forum.dlang.org/thread/mailman.357.1384163617.9546.digitalmars-d puremagic.com
May 07 2014








"Mengu" <mengukagan gmail.com>