From 82413e829e03cc73b2caccea09e33f900fa99a4e Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sat, 23 Jul 2011 09:54:31 +0200 Subject: libcli/security: add some const to marshall_sec_desc[_buf]() metze --- libcli/security/secdesc.c | 4 ++-- libcli/security/secdesc.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'libcli/security') diff --git a/libcli/security/secdesc.c b/libcli/security/secdesc.c index 2c8fbc59ca..fcd0828963 100644 --- a/libcli/security/secdesc.c +++ b/libcli/security/secdesc.c @@ -261,7 +261,7 @@ struct security_descriptor *dup_sec_desc(TALLOC_CTX *ctx, const struct security_ Convert a secdesc into a byte stream ********************************************************************/ NTSTATUS marshall_sec_desc(TALLOC_CTX *mem_ctx, - struct security_descriptor *secdesc, + const struct security_descriptor *secdesc, uint8_t **data, size_t *len) { DATA_BLOB blob; @@ -287,7 +287,7 @@ NTSTATUS marshall_sec_desc(TALLOC_CTX *mem_ctx, ********************************************************************/ NTSTATUS marshall_sec_desc_buf(TALLOC_CTX *mem_ctx, - struct sec_desc_buf *secdesc_buf, + const struct sec_desc_buf *secdesc_buf, uint8_t **data, size_t *len) { DATA_BLOB blob; diff --git a/libcli/security/secdesc.h b/libcli/security/secdesc.h index 1e6d2e574d..b8190a1e56 100644 --- a/libcli/security/secdesc.h +++ b/libcli/security/secdesc.h @@ -56,14 +56,14 @@ struct security_descriptor *dup_sec_desc(TALLOC_CTX *ctx, const struct security_ Convert a secdesc into a byte stream ********************************************************************/ NTSTATUS marshall_sec_desc(TALLOC_CTX *mem_ctx, - struct security_descriptor *secdesc, + const struct security_descriptor *secdesc, uint8_t **data, size_t *len); /******************************************************************* Convert a secdesc_buf into a byte stream ********************************************************************/ NTSTATUS marshall_sec_desc_buf(TALLOC_CTX *mem_ctx, - struct sec_desc_buf *secdesc_buf, + const struct sec_desc_buf *secdesc_buf, uint8_t **data, size_t *len); /******************************************************************* -- cgit