mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
s3:include: move struct smb_filename to vfs.h
metze
This commit is contained in:
parent
22cfc8eca8
commit
4a22dd61c0
@ -1041,16 +1041,6 @@ struct smb_extended_info {
|
||||
#define UCF_POSIX_PATHNAMES 0x00000008
|
||||
#define UCF_UNIX_NAME_LOOKUP 0x00000010
|
||||
|
||||
/*
|
||||
* smb_filename
|
||||
*/
|
||||
struct smb_filename {
|
||||
char *base_name;
|
||||
char *stream_name;
|
||||
char *original_lcomp;
|
||||
SMB_STRUCT_STAT st;
|
||||
};
|
||||
|
||||
/* Used to keep track of deferred opens. */
|
||||
struct deferred_open_record;
|
||||
|
||||
|
@ -358,6 +358,16 @@ struct smb_file_time {
|
||||
struct timespec create_time;
|
||||
};
|
||||
|
||||
/*
|
||||
* smb_filename
|
||||
*/
|
||||
struct smb_filename {
|
||||
char *base_name;
|
||||
char *stream_name;
|
||||
char *original_lcomp;
|
||||
SMB_STRUCT_STAT st;
|
||||
};
|
||||
|
||||
#define VFS_FIND(__fn__) while (handle->fns->__fn__##_fn==NULL) { \
|
||||
handle = handle->next; \
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user