From d28efabb7996419cc7d65622e245c83fd41aec47 Mon Sep 17 00:00:00 2001 From: Badlop Date: Mon, 9 Mar 2009 19:17:53 +0000 Subject: * src/tls/tls_drv.c: Fix to support OpenSSL older than 0.9.8f (EJAB-877)(thanks to Jonathan Schleifer) * doc/guide.tex: It is again supported OpenSSL older than 0.9.8f * doc/guide.html: Likewise SVN Revision: 1979 --- src/tls/tls_drv.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/tls/tls_drv.c') diff --git a/src/tls/tls_drv.c b/src/tls/tls_drv.c index e7b07028b..257262607 100644 --- a/src/tls/tls_drv.c +++ b/src/tls/tls_drv.c @@ -40,6 +40,10 @@ typedef struct { typedef unsigned __int32 uint32_t; #endif +#ifndef SSL_OP_NO_TICKET +#define SSL_OP_NO_TICKET 0 +#endif + /* * str_hash is based on the public domain code from * http://www.burtleburtle.net/bob/hash/doobs.html -- cgit v1.2.3