From: Ben Laurie Date: Tue, 29 May 2012 18:58:43 +0000 (+0000) Subject: Don't insert in the middle. X-Git-Tag: OpenSSL_1_0_2-beta1~620 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=19eedffcafe5e703f28e015bad417bc50266c19b;p=oweals%2Fopenssl.git Don't insert in the middle. --- 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 };