diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-11-11 18:07:51 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:15:46 -0500 |
commit | bef92ebb257adda6634c559e0240ad4991840212 (patch) | |
tree | fb108038ab9789510be96610afd88ce16ae17131 /source3/lib | |
parent | b6b84f98c0420f45c498b025d9edbeb7f830205a (diff) | |
download | samba-bef92ebb257adda6634c559e0240ad4991840212.tar.gz samba-bef92ebb257adda6634c559e0240ad4991840212.tar.bz2 samba-bef92ebb257adda6634c559e0240ad4991840212.zip |
r19669: set_share_security does not need a mem_ctx passed
(This used to be commit 53eaa603eb84047263c27d57b8c0f5ce8e157189)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/sharesec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/sharesec.c b/source3/lib/sharesec.c index 81b383d167..e3216aa459 100644 --- a/source3/lib/sharesec.c +++ b/source3/lib/sharesec.c @@ -145,7 +145,7 @@ SEC_DESC *get_share_security( TALLOC_CTX *ctx, const char *servicename, Store a security descriptor in the share db. ********************************************************************/ -BOOL set_share_security(TALLOC_CTX *ctx, const char *share_name, SEC_DESC *psd) +BOOL set_share_security(const char *share_name, SEC_DESC *psd) { prs_struct ps; TALLOC_CTX *mem_ctx = NULL; |