summaryrefslogtreecommitdiff
path: root/source3/smbd/trans2.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-08-19 19:12:26 +0000
committerTim Potter <tpot@samba.org>2002-08-19 19:12:26 +0000
commitc0ac93697ec4c4aa0000c0577ae474a34e686950 (patch)
treeeffd4846fc3b9c12e2cad1e92b6371616e29657e /source3/smbd/trans2.c
parent64456bf3c037fb640d8a5f97cded2db5ca533bd3 (diff)
downloadsamba-c0ac93697ec4c4aa0000c0577ae474a34e686950.tar.gz
samba-c0ac93697ec4c4aa0000c0577ae474a34e686950.tar.bz2
samba-c0ac93697ec4c4aa0000c0577ae474a34e686950.zip
Added comment about our implementation of the trans2
SMB_FILE_INTERNAL_INFORMATION possibly causing the failure of one of the IFSKIT tests. (This used to be commit ca73d24307fcf60e4b7bfe574287b2a84c5d86c8)
Diffstat (limited to 'source3/smbd/trans2.c')
-rw-r--r--source3/smbd/trans2.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c
index a66c029286..8da55ba4ec 100644
--- a/source3/smbd/trans2.c
+++ b/source3/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;