summaryrefslogtreecommitdiff
path: root/src/MySock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/MySock.cpp')
-rw-r--r--src/MySock.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/MySock.cpp b/src/MySock.cpp
index 6f73517..d998d4c 100644
--- a/src/MySock.cpp
+++ b/src/MySock.cpp
@@ -126,11 +126,11 @@ MySock::MySock(string uri)
}
else if (protostr=="https")
{
- if(this->safe_url(uri))
+ if(this->is_safe_url(uri))
{
- this->https_url=url;
+ this->https_uri=uri;
this->use_external_fetch=true;
- this->connection;
+ this->connected=true;
}
}
else