diff options
author | Volker Lendecke <vl@samba.org> | 2013-04-11 17:01:22 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-04-17 14:49:57 -0700 |
commit | 766f04cebd08d5b7056171945a79b7a8cb4de198 (patch) | |
tree | 84e5c0450e7de405ca61008b07d39d84636e65f0 /source3/include | |
parent | f50dedb8fb2c654d3e5dccba24fdf79a96525061 (diff) | |
download | samba-766f04cebd08d5b7056171945a79b7a8cb4de198.tar.gz samba-766f04cebd08d5b7056171945a79b7a8cb4de198.tar.bz2 samba-766f04cebd08d5b7056171945a79b7a8cb4de198.zip |
lib: Add synthetic_smb_fname
The interface of create_synthetic_smb_fname is just silly
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 6bc151e888..5b9decdc1c 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1605,6 +1605,10 @@ NTSTATUS create_synthetic_smb_fname_split(TALLOC_CTX *ctx, const char *fname, const SMB_STRUCT_STAT *psbuf, struct smb_filename **smb_fname_out); +struct smb_filename *synthetic_smb_fname(TALLOC_CTX *mem_ctx, + const char *base_name, + const char *stream_name, + const SMB_STRUCT_STAT *psbuf); const char *smb_fname_str_dbg(const struct smb_filename *smb_fname); const char *fsp_str_dbg(const struct files_struct *fsp); const char *fsp_fnum_dbg(const struct files_struct *fsp); |