mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-18 19:41:01 -05:00
Remove a lot of pointless 'struct' keywords.
This is the commit that f3295e0fb
_should_ have been. Yesterday I just
added some typedefs so that I didn't have to wear out my fingers
typing 'struct' in new code, but what I ought to have done is to move
all the typedefs into defs.h with the rest, and then go through
cleaning up the legacy 'struct's all through the existing code.
But I was mostly trying to concentrate on getting the test suite
finished, so I just did the minimum. Now it's time to come back and do
it better.
This commit is contained in:
@ -1006,7 +1006,7 @@ bool ssh1_common_filter_queue(PacketProtocolLayer *ppl)
|
||||
|
||||
void ssh1_compute_session_id(
|
||||
unsigned char *session_id, const unsigned char *cookie,
|
||||
struct RSAKey *hostkey, struct RSAKey *servkey)
|
||||
RSAKey *hostkey, RSAKey *servkey)
|
||||
{
|
||||
struct MD5Context md5c;
|
||||
|
||||
|
Reference in New Issue
Block a user