From 19eedffcafe5e703f28e015bad417bc50266c19b Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Tue, 29 May 2012 18:58:43 +0000 Subject: [PATCH] Don't insert in the middle. --- ssl/ssl.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ssl/ssl.h b/ssl/ssl.h index 1b5525b288..92840cdb66 100644 --- a/ssl/ssl.h +++ b/ssl/ssl.h @@ -538,14 +538,16 @@ struct ssl_session_st unsigned char *tlsext_tick; /* Session ticket */ size_t tlsext_ticklen; /* Session ticket length */ long tlsext_tick_lifetime_hint; /* Session lifetime hint in seconds */ +#endif +#ifndef OPENSSL_NO_SRP + char *srp_username; +#endif +#ifndef OPENSSL_NO_TLSEXT /* Used by client: the proof for this session. * We store it outside the sess_cert structure, since the proof * is received before the certificate. */ unsigned char *audit_proof; size_t audit_proof_length; -#endif -#ifndef OPENSSL_NO_SRP - char *srp_username; #endif }; -- 2.25.1