1
0
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:
Stefan Metzmacher 2012-06-05 10:38:48 +02:00
parent 22cfc8eca8
commit 4a22dd61c0
2 changed files with 10 additions and 10 deletions

View File

@ -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;

View File

@ -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; \
}