From: Ivo Raisr Date: Fri, 11 Sep 2015 16:24:33 +0000 (+0100) Subject: Make no-psk compile without warnings. X-Git-Tag: OpenSSL_1_0_0t~14 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=df32994cf0dbaefef8187b60785eb615735d7be1;p=oweals%2Fopenssl.git Make no-psk compile without warnings. PR#4035 Reviewed-by: Emilia Käsper Reviewed-by: Stephen Henson (cherry picked from commit 929f6d6f55275b17cfdd5c405ef403bce87c9aef) --- diff --git a/ssl/ssl_asn1.c b/ssl/ssl_asn1.c index aad07e6cf0..8629916a07 100644 --- a/ssl/ssl_asn1.c +++ b/ssl/ssl_asn1.c @@ -118,13 +118,16 @@ typedef struct ssl_session_asn1_st { int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp) { #define LSIZE2 (sizeof(long)*2) - int v1 = 0, v2 = 0, v3 = 0, v4 = 0, v5 = 0, v7 = 0, v8 = 0; + int v1 = 0, v2 = 0, v3 = 0, v4 = 0, v5 = 0; unsigned char buf[4], ibuf1[LSIZE2], ibuf2[LSIZE2]; unsigned char ibuf3[LSIZE2], ibuf4[LSIZE2], ibuf5[LSIZE2]; #ifndef OPENSSL_NO_TLSEXT int v6 = 0, v9 = 0, v10 = 0; unsigned char ibuf6[LSIZE2]; #endif +#ifndef OPENSSL_NO_PSK + int v7 = 0, v8 = 0; +#endif #ifndef OPENSSL_NO_COMP unsigned char cbuf; int v11 = 0;