summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-05-18 12:51:35 +0200
committerGünther Deschner <gd@samba.org>2010-05-18 12:51:35 +0200
commita531537341d874ed2bfa7058ec45417e856bed4e (patch)
treecbfa2eb0fc9eb8ad726952fd1a89fb4b1cad1274 /source3
parent7f6bb48bdf230465fd26514ff43d92e2c1f32fe6 (diff)
downloadsamba-a531537341d874ed2bfa7058ec45417e856bed4e.tar.gz
samba-a531537341d874ed2bfa7058ec45417e856bed4e.tar.bz2
samba-a531537341d874ed2bfa7058ec45417e856bed4e.zip
s3-secdesc: move SEC_DESC_HEADER_SIZE to its only user.
Guenther
Diffstat (limited to 'source3')
-rw-r--r--source3/include/rpc_secdes.h2
-rw-r--r--source3/lib/secdesc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/rpc_secdes.h b/source3/include/rpc_secdes.h
index f1d1b1a18f..b8c286fb0b 100644
--- a/source3/include/rpc_secdes.h
+++ b/source3/include/rpc_secdes.h
@@ -71,8 +71,6 @@
#define SEC_DESC_REVISION 0x1
#endif
-#define SEC_DESC_HEADER_SIZE (2 * sizeof(uint16) + 4 * sizeof(uint32))
-
/* A type to describe the mapping of generic access rights to object
specific access rights. */
diff --git a/source3/lib/secdesc.c b/source3/lib/secdesc.c
index 5791ab6153..4964fd5f45 100644
--- a/source3/lib/secdesc.c
+++ b/source3/lib/secdesc.c
@@ -153,6 +153,8 @@ struct security_descriptor *sec_desc_merge(TALLOC_CTX *ctx, struct security_desc
Creates a struct security_descriptor structure
********************************************************************/
+#define SEC_DESC_HEADER_SIZE (2 * sizeof(uint16) + 4 * sizeof(uint32))
+
struct security_descriptor *make_sec_desc(TALLOC_CTX *ctx,
enum security_descriptor_revision revision,
uint16 type,