commit | 0556f2aa4302b4262a58a7c4bfcb337530597822 | [log] [tgz] |
---|---|---|
author | Richard Levitte <levitte@openssl.org> | Fri Aug 19 17:14:26 2016 +0200 |
committer | Richard Levitte <levitte@openssl.org> | Fri Aug 19 17:17:20 2016 +0200 |
tree | 02cc1c2798afa5efe5a3cc3d9da8e1c27671bc9d | |
parent | e5972607a15113d07bb4bbd52df59cb9cede3079 [diff] [blame] |
MEMPACKET is typedef'd in ssltestlib.h, don't do so again in ssltestlib.c Reviewed-by: Rich Salz <rsalz@openssl.org>
diff --git a/test/ssltestlib.c b/test/ssltestlib.c index ff5cbed..8b30014 100644 --- a/test/ssltestlib.c +++ b/test/ssltestlib.c
@@ -231,12 +231,12 @@ } -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) {