diff options
author | Badlop <badlop@process-one.net> | 2009-03-09 19:17:53 +0000 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2009-03-09 19:17:53 +0000 |
commit | d28efabb7996419cc7d65622e245c83fd41aec47 (patch) | |
tree | 5f5ae7de2547fce995ce1b7747316bd30e64c12e /src/tls/tls_drv.c | |
parent | * src/Makefile.in: In SunOS, use different C flags (thanks to (diff) |
* 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
Diffstat (limited to 'src/tls/tls_drv.c')
-rw-r--r-- | src/tls/tls_drv.c | 4 |
1 files changed, 4 insertions, 0 deletions
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 |