Variables for uncommented code now uncommented as well. Fixes

"unused variable" warnings from GCC.


git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@667 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Peter Åstrand 2004-04-17 07:37:07 +00:00
parent cf75b04b79
commit b95b322192

5
rdp.c
View File

@ -893,9 +893,12 @@ process_data_pdu(STREAM s)
uint8 data_pdu_type; uint8 data_pdu_type;
uint8 ctype; uint8 ctype;
uint16 clen; uint16 clen;
int roff, rlen, len, ret; int len;
#if 0
int roff, rlen, ret;
static struct stream ns; static struct stream ns;
static signed char *dict = 0; static signed char *dict = 0;
#endif
in_uint8s(s, 6); /* shareid, pad, streamid */ in_uint8s(s, 6); /* shareid, pad, streamid */
in_uint16(s, len); in_uint16(s, len);