MEMPACKET is typedef'd in ssltestlib.h, don't do so again in ssltestlib.c

Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Richard Levitte 2016-08-19 17:14:26 +02:00
parent e5972607a1
commit 0556f2aa43

View file

@ -231,12 +231,12 @@ static int tls_dump_puts(BIO *bio, const char *str)
}
typedef struct mempacket_st {
struct mempacket_st {
unsigned char *data;
int len;
unsigned int num;
unsigned int type;
} MEMPACKET;
};
static void mempacket_free(MEMPACKET *pkt)
{