Author: jra Date: 2006-02-19 21:01:21 +0000 (Sun, 19 Feb 2006) New Revision: 13563
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13563 Log: Fix bug #3526 found and diagnosed by [EMAIL PROTECTED] trans2findfirst recognises two info levels *not* recognised by trans2findnext. Add them. Needed for 3.0.21c. Jeremy. Modified: branches/SAMBA_3_0/source/smbd/trans2.c Changeset: Modified: branches/SAMBA_3_0/source/smbd/trans2.c =================================================================== --- branches/SAMBA_3_0/source/smbd/trans2.c 2006-02-19 21:00:58 UTC (rev 13562) +++ branches/SAMBA_3_0/source/smbd/trans2.c 2006-02-19 21:01:21 UTC (rev 13563) @@ -1927,6 +1927,8 @@ case SMB_FIND_FILE_FULL_DIRECTORY_INFO: case SMB_FIND_FILE_NAMES_INFO: case SMB_FIND_FILE_BOTH_DIRECTORY_INFO: + case SMB_FIND_ID_FULL_DIRECTORY_INFO: + case SMB_FIND_ID_BOTH_DIRECTORY_INFO: break; case SMB_FIND_FILE_UNIX: if (!lp_unix_extensions())
