From: Tim Potter Date: Mon, 19 Aug 2002 19:12:26 +0000 (+0000) Subject: Added comment about our implementation of the trans2 X-Git-Tag: samba-3.0.0alpha20~467 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca73d24307fcf60e4b7bfe574287b2a84c5d86c8;p=thirdparty%2Fsamba.git Added comment about our implementation of the trans2 SMB_FILE_INTERNAL_INFORMATION possibly causing the failure of one of the IFSKIT tests. --- diff --git a/source/smbd/trans2.c b/source/smbd/trans2.c index a66c0292863..8da55ba4ec5 100644 --- a/source/smbd/trans2.c +++ b/source/smbd/trans2.c @@ -1842,7 +1842,12 @@ static int call_trans2qfilepathinfo(connection_struct *conn, break; case SMB_FILE_INTERNAL_INFORMATION: - /* This should be an index number - looks like dev/ino to me :-) */ + /* This should be an index number - looks like + dev/ino to me :-) + + I think this causes us to fail the IFSKIT + BasicFileInformationTest. -tpot */ + SIVAL(pdata,0,sbuf.st_dev); SIVAL(pdata,4,sbuf.st_ino); data_size = 8;