From c7c0be0b989b0e395215926432077fdc17c01ef6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C3=85strand?= Date: Thu, 14 Apr 2011 14:05:32 +0000 Subject: [PATCH] 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 --- disk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/disk.c b/disk.c index dcc6fe5..8bab9a1 100644 --- a/disk.c +++ b/disk.c @@ -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;