diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-08-31 03:16:52 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-08-31 03:16:52 +0000 |
commit | 11c5869a450d5f78a9395889ec03f77732cc8be5 (patch) | |
tree | d3fd5854dd61dc36f3d83064fdf04dc34c81234e /source4/include | |
parent | a8a5ac2bd218d5bc3985ffbe118111c9b4649860 (diff) | |
download | samba-11c5869a450d5f78a9395889ec03f77732cc8be5.tar.gz samba-11c5869a450d5f78a9395889ec03f77732cc8be5.tar.bz2 samba-11c5869a450d5f78a9395889ec03f77732cc8be5.zip |
I think I've finally got the ascii/unicode issues right in trans2 find
first
Also expanded the rename test a little
(This used to be commit 723af7f097a8c7f23dac23039e479811559ac3cb)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/smb.h | 7 | ||||
-rw-r--r-- | source4/include/smb_interfaces.h | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/source4/include/smb.h b/source4/include/smb.h index 14af5b5ea1..b791182aa6 100644 --- a/source4/include/smb.h +++ b/source4/include/smb.h @@ -972,9 +972,10 @@ struct bitmap { #define RENAME_REPLACE_IF_EXISTS 1 /* flags for SMBntrename call */ -#define RENAME_FLAG_HARD_LINK 0x103 -#define RENAME_FLAG_RENAME 0x104 -#define RENAME_FLAG_COPY 0x105 +#define RENAME_FLAG_MOVE_CLUSTER_INFORMATION 0x102 /* ???? */ +#define RENAME_FLAG_HARD_LINK 0x103 +#define RENAME_FLAG_RENAME 0x104 +#define RENAME_FLAG_COPY 0x105 /* Filesystem Attributes. */ #define FILE_CASE_SENSITIVE_SEARCH 0x01 diff --git a/source4/include/smb_interfaces.h b/source4/include/smb_interfaces.h index 8a5819ff89..d087d2642e 100644 --- a/source4/include/smb_interfaces.h +++ b/source4/include/smb_interfaces.h @@ -151,7 +151,7 @@ union smb_rename { struct { uint16 attrib; uint16 flags; /* see RENAME_FLAG_* */ - uint32 unknown; + uint32 cluster_size; const char *old_name; const char *new_name; } in; |