From 0556f2aa4302b4262a58a7c4bfcb337530597822 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 19 Aug 2016 17:14:26 +0200 Subject: MEMPACKET is typedef'd in ssltestlib.h, don't do so again in ssltestlib.c Reviewed-by: Rich Salz --- test/ssltestlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/ssltestlib.c b/test/ssltestlib.c index ff5cbedd6d..8b30014ba3 100644 --- a/test/ssltestlib.c +++ b/test/ssltestlib.c @@ -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) { -- cgit v1.2.3