mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-04 21:12:47 -05:00
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.
This commit is contained in:
2
sshaes.c
2
sshaes.c
@ -48,8 +48,6 @@
|
|||||||
# define INLINE
|
# define INLINE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef struct AESContext AESContext;
|
|
||||||
|
|
||||||
struct AESContext {
|
struct AESContext {
|
||||||
word32 keysched_buf[(MAX_NR + 1) * NB + 3];
|
word32 keysched_buf[(MAX_NR + 1) * NB + 3];
|
||||||
word32 invkeysched_buf[(MAX_NR + 1) * NB + 3];
|
word32 invkeysched_buf[(MAX_NR + 1) * NB + 3];
|
||||||
|
Reference in New Issue
Block a user