diff options
author | Volker Lendecke <vl@samba.org> | 2008-01-20 15:59:31 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-01-20 15:59:31 +0100 |
commit | 043a7e177476d4c281b74d6ce997219f3009744a (patch) | |
tree | 933417bda353e6401f3691d0cfb4a2cdd5783956 /source3 | |
parent | 152c720ddbff3566d64d7e09561354820ff840c9 (diff) | |
download | samba-043a7e177476d4c281b74d6ce997219f3009744a.tar.gz samba-043a7e177476d4c281b74d6ce997219f3009744a.tar.bz2 samba-043a7e177476d4c281b74d6ce997219f3009744a.zip |
Activate SMB_QUERY_FILE_STREAM_INFO
gcolley was right, my nt4 does not blue screen with it
(This used to be commit 9f2b5dc1865ca109e1e34c91548479ad9b26f450)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/trans2.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index d56a0dab09..9c48cdfbba 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -4331,14 +4331,15 @@ total_data=%u (should be %u)\n", (unsigned int)total_data, (unsigned int)IVAL(pd data_size = 4; break; -#if 0 /* - * NT4 server just returns "invalid query" to this - if we try to answer - * it then NTws gets a BSOD! (tridge). - * W2K seems to want this. JRA. + * NT4 server just returns "invalid query" to this - if we try + * to answer it then NTws gets a BSOD! (tridge). W2K seems to + * want this. JRA. + */ + /* The first statement above is false - verified using Thursby + * client against NT4 -- gcolley. */ case SMB_QUERY_FILE_STREAM_INFO: -#endif case SMB_FILE_STREAM_INFORMATION: { unsigned int num_streams; struct stream_struct *streams; |