diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-06-13 09:31:15 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-06-13 09:31:15 +0000 |
commit | b821b0c7dd1438271f0e1bb5b9cbd3da7e24cec4 (patch) | |
tree | e1460473081d557fdf2416769074d4679d96c165 /source3/include | |
parent | b7930178c35ed1b9e449ead7b8cd03bc4f0ce316 (diff) | |
download | samba-b821b0c7dd1438271f0e1bb5b9cbd3da7e24cec4.tar.gz samba-b821b0c7dd1438271f0e1bb5b9cbd3da7e24cec4.tar.bz2 samba-b821b0c7dd1438271f0e1bb5b9cbd3da7e24cec4.zip |
fixed the change notify bit definitions
(This used to be commit 17d3c3a14885a42889d69459e7b3af7040a45499)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index b64fa0bd02..cf93689f64 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1256,7 +1256,7 @@ struct bitmap { #define FILE_VOLUME_IS_COMPRESSED 0x8000 /* ChangeNotify flags. */ -#define FILE_NOTIFY_CHANGE_FILE_NAME 0x001 +#define FILE_NOTIFY_CHANGE_FILE 0x001 #define FILE_NOTIFY_CHANGE_DIR_NAME 0x002 #define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x004 #define FILE_NOTIFY_CHANGE_SIZE 0x008 @@ -1265,6 +1265,7 @@ struct bitmap { #define FILE_NOTIFY_CHANGE_CREATION 0x040 #define FILE_NOTIFY_CHANGE_EA 0x080 #define FILE_NOTIFY_CHANGE_SECURITY 0x100 +#define FILE_NOTIFY_CHANGE_FILE_NAME 0x200 /* where to find the base of the SMB packet proper */ #define smb_base(buf) (((char *)(buf))+4) |