s3: Plumb smb_filename around SMB_VFS_CHFLAGS
authorTim Prouty <tprouty@samba.org>
Mon, 6 Jul 2009 21:36:16 +0000 (14:36 -0700)
committerTim Prouty <tprouty@samba.org>
Mon, 6 Jul 2009 22:38:41 +0000 (15:38 -0700)
commit99bd4fda0cd97eb211549a511a2ff6153c2bde2d
treedb1e4d3424b6bd1215a341f727ef94c748244454
parent0f6e10886f3f778fe301ee981873f29d295d39c5
s3: Plumb smb_filename around SMB_VFS_CHFLAGS

SMB_VFS_CHFLAGS isn't actually getting the smb_filename struct for now
since it only operates on the basefile.  This is the strategy for all
path-based operations that will never actually operate on a stream.

By clarifying the meaning of path based operations that don't take an
smb_filename struct, modules that implement streams such as vfs_onefs
no longer need to implement SMB_VFS_CHFLAGS to ensure it's only called
on the base_name.
source3/include/proto.h
source3/modules/onefs.h
source3/modules/onefs_streams.c
source3/modules/vfs_onefs.c
source3/smbd/dosmode.c
source3/smbd/fileio.c
source3/smbd/nttrans.c
source3/smbd/open.c
source3/smbd/reply.c
source3/smbd/trans2.c