about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/HTAAUtil.c
diff options
context:
space:
mode:
Diffstat (limited to 'WWW/Library/Implementation/HTAAUtil.c')
-rw-r--r--WWW/Library/Implementation/HTAAUtil.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/WWW/Library/Implementation/HTAAUtil.c b/WWW/Library/Implementation/HTAAUtil.c
index 25d24aa6..fd7d24aa 100644
--- a/WWW/Library/Implementation/HTAAUtil.c
+++ b/WWW/Library/Implementation/HTAAUtil.c
@@ -50,10 +50,6 @@
 #include <HTTCP.h>
 #include <HTTP.h>
 
-#ifdef USE_SSL
-PRIVATE SSL * Handle = NULL;	/* The SSL Handle	*/
-#endif /* USE_SSL */
-
 #include <LYStrings.h>
 #include <LYLeaks.h>
 
@@ -560,8 +556,8 @@ PUBLIC char *HTAA_getUnfoldedLine NOARGS
 
 	if (start_pointer >= end_pointer) {/*Read the next block and continue*/
 #ifdef USE_SSL
-	    if (Handle)
-		count = SSL_read(Handle, buffer, BUFFER_SIZE);
+	    if (SSL_handle)
+		count = SSL_read(SSL_handle, buffer, BUFFER_SIZE);
 	    else
 		count = NETREAD(in_soc, buffer, BUFFER_SIZE);
 #else