From d29ce3be2a3fb1b671b59747ad32016c9ebb1066 Mon Sep 17 00:00:00 2001 From: John Reese Date: Tue, 2 Sep 2014 12:08:06 -0700 Subject: [PATCH] Fix #114: revert proxy change that breaks w/o libcurl --- push.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/push.cpp b/push.cpp index 5276761..e3e14c7 100755 --- a/push.cpp +++ b/push.cpp @@ -588,7 +588,7 @@ class CPushMod : public CModule // Create the socket connection, write to it, and add it to the queue CPushSocket *sock = new CPushSocket(this); sock->Connect(service_host, use_port, use_ssl); - sock->Request(use_post, service_host, service_url, params, service_auth, options["proxy"].c_str()); + sock->Request(use_post, service_host, service_url, params, service_auth); AddSocket(sock); #endif } @@ -1552,7 +1552,7 @@ class CPushMod : public CModule // Create the socket connection, write to it, and add it to the queue CPushSocket *sock = new CPushSocket(this); sock->Connect(service_host, use_port, use_ssl); - sock->Request(use_post, service_host, service_url, params, service_auth, options["proxy"].c_str()); + sock->Request(use_post, service_host, service_url, params, service_auth); AddSocket(sock); #endif