summaryrefslogtreecommitdiffstats
path: root/etc/inc/xmlrpc_client.inc
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2014-05-07 15:39:23 -0300
committerRenato Botelho <garga@FreeBSD.org>2014-05-07 15:39:23 -0300
commit96d91e4a436774bc3f48d42d0a4e1b4f629a2a62 (patch)
treed39a0157947f1ef5789e034eb9d58a25ab70cadc /etc/inc/xmlrpc_client.inc
parentf0cf1a649a8c93523f3292e34de2b8e5a8800da1 (diff)
downloadpfsense-96d91e4a436774bc3f48d42d0a4e1b4f629a2a62.zip
pfsense-96d91e4a436774bc3f48d42d0a4e1b4f629a2a62.tar.gz
Partialy revert 0ae4f3f:
It broke xmlrpc_client since https is not a valid php transport.
Diffstat (limited to 'etc/inc/xmlrpc_client.inc')
-rw-r--r--etc/inc/xmlrpc_client.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/inc/xmlrpc_client.inc b/etc/inc/xmlrpc_client.inc
index 6248d95..cc91f6d 100644
--- a/etc/inc/xmlrpc_client.inc
+++ b/etc/inc/xmlrpc_client.inc
@@ -735,7 +735,7 @@ class XML_RPC_Client extends XML_RPC_Base {
if ($match[1] == '') {
if ($port == 443) {
$this->server = $match[2];
- $this->protocol = 'https://';
+ $this->protocol = 'ssl://';
$this->port = 443;
} else {
$this->server = $match[2];
@@ -750,7 +750,7 @@ class XML_RPC_Client extends XML_RPC_Base {
}
} else {
$this->server = $match[2];
- $this->protocol = 'https://';
+ $this->protocol = 'ssl://';
if ($port) {
$this->port = $port;
} else {
@@ -763,7 +763,7 @@ class XML_RPC_Client extends XML_RPC_Base {
if ($match[1] == '') {
if ($proxy_port == 443) {
$this->proxy = $match[2];
- $this->proxy_protocol = 'https://';
+ $this->proxy_protocol = 'ssl://';
$this->proxy_port = 443;
} else {
$this->proxy = $match[2];
@@ -778,7 +778,7 @@ class XML_RPC_Client extends XML_RPC_Base {
}
} else {
$this->proxy = $match[2];
- $this->proxy_protocol = 'https://';
+ $this->proxy_protocol = 'ssl://';
if ($proxy_port) {
$this->proxy_port = $proxy_port;
} else {
OpenPOWER on IntegriCloud