[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Fri Aug 19 15:17:23 UTC 2016


The branch master has been updated
       via  0556f2aa4302b4262a58a7c4bfcb337530597822 (commit)
      from  e5972607a15113d07bb4bbd52df59cb9cede3079 (commit)


- Log -----------------------------------------------------------------
commit 0556f2aa4302b4262a58a7c4bfcb337530597822
Author: Richard Levitte <levitte at openssl.org>
Date:   Fri Aug 19 17:14:26 2016 +0200

    MEMPACKET is typedef'd in ssltestlib.h, don't do so again in ssltestlib.c
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 test/ssltestlib.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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 @@ 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)
 {


More information about the openssl-commits mailing list