From e1b52ae721ef5b41fb80d88b3e645bee47deadd5 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Thu, 20 Sep 2018 23:46:45 +0100 Subject: [PATCH] Remove duplicate typedef of AESContext. Pavel Kryukov points out that ssh.h has this typedef, so sshaes.c doesn't have to have it too, and in C89 mode it's an error to have it twice. --- sshaes.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sshaes.c b/sshaes.c index c5c05d21..06e82f54 100644 --- a/sshaes.c +++ b/sshaes.c @@ -48,8 +48,6 @@ # define INLINE #endif -typedef struct AESContext AESContext; - struct AESContext { word32 keysched_buf[(MAX_NR + 1) * NB + 3]; word32 invkeysched_buf[(MAX_NR + 1) * NB + 3];