--- sourceforge.net/trunk/rdesktop/rdp5.c 2003/06/06 10:48:38 411 +++ sourceforge.net/trunk/rdesktop/rdp5.c 2003/06/17 08:44:32 423 @@ -24,7 +24,7 @@ extern uint8 *next_packet; void -rdp5_process(STREAM s, BOOL encryption, BOOL shortform) +rdp5_process(STREAM s, BOOL encryption) { uint16 length, count; uint8 type; @@ -32,7 +32,7 @@ if (encryption) { - in_uint8s(s, shortform ? 6 : 7 /* XXX HACK */ ); /* signature */ + in_uint8s(s, 8); /* signature */ sec_decrypt(s->p, s->end - s->p); }