]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
Added comment about our implementation of the trans2
authorTim Potter <tpot@samba.org>
Mon, 19 Aug 2002 19:12:26 +0000 (19:12 +0000)
committerTim Potter <tpot@samba.org>
Mon, 19 Aug 2002 19:12:26 +0000 (19:12 +0000)
SMB_FILE_INTERNAL_INFORMATION possibly causing the failure of one of the
IFSKIT tests.

source/smbd/trans2.c

index a66c029286338e83ced354241ca853fd2ecf51a8..8da55ba4ec5b179c41701e889c0e83ee9d726739 100644 (file)
@@ -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;