Avoid compile warning about /* in comment.

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/rdesktop/trunk@1620 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Peter Åstrand 2011-04-14 14:05:32 +00:00
parent 968f145c31
commit c7c0be0b98

4
disk.c
View File

@ -1264,8 +1264,8 @@ disk_query_directory(RD_NTHANDLE handle, uint32 info_class, char *pattern, STREA
out_uint32_le(out, 0); /* EaSize */
out_uint8(out, 0); /* ShortNameLength */
/* this should be correct according to MS-FSCC specification
but it only works when commented out...
out_uint8(out, 0); /* Reserved/Padding */
but it only works when commented out... */
/* out_uint8(out, 0); *//* Reserved/Padding */
out_uint8s(out, 2 * 12); /* ShortName (8.3 name) */
rdp_out_unistr(out, pdirent->d_name, 2 * strlen(pdirent->d_name));
break;