diff options
Diffstat (limited to 'source3/smbd/nttrans.c')
-rw-r--r-- | source3/smbd/nttrans.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index a8716d36a3..d2a052dd55 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -306,6 +306,18 @@ bool is_ntfs_stream_name(const char *fname) } /**************************************************************************** + Simple check to determine if the filename is a stream. + ***************************************************************************/ +bool is_ntfs_stream_smb_fname(const struct smb_filename *smb_fname) +{ + if (lp_posix_pathnames()) { + return false; + } + + return smb_fname->stream_name; +} + +/**************************************************************************** Reply to an NT create and X call on a pipe ****************************************************************************/ |