diff options
author | Michael Adam <obnox@samba.org> | 2012-06-12 14:35:39 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-06-15 03:28:13 +0200 |
commit | 63bfc70a2ad391c7d0f0ce8d7c637ca2b5ba5645 (patch) | |
tree | f0f440d569e33e9bf302596bc96afd2886d60113 | |
parent | a7dccea0c5be8742c9e60c5caf6e832679e19f31 (diff) | |
download | samba-63bfc70a2ad391c7d0f0ce8d7c637ca2b5ba5645.tar.gz samba-63bfc70a2ad391c7d0f0ce8d7c637ca2b5ba5645.tar.bz2 samba-63bfc70a2ad391c7d0f0ce8d7c637ca2b5ba5645.zip |
s3:include: define FNUM_FIELD_INVALID - the invalid value for the fnum
Signed-off-by: Stefan Metzmacher <metze@samba.org>
-rw-r--r-- | source3/include/smb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index fdaf8c5de3..8a2314261c 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -675,6 +675,8 @@ enum acl_compatibility {ACL_COMPAT_AUTO, ACL_COMPAT_WINNT, ACL_COMPAT_WIN2K}; #define TID_FIELD_INVALID 0 #define CNUM_OFFSET 1 /* shift for bitmap index */ +#define FNUM_FIELD_INVALID -1 + /* * Size of buffer to use when moving files across filesystems. */ |