diff options
author | Michael Adam <obnox@samba.org> | 2010-09-20 03:38:45 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2010-09-21 06:53:30 +0200 |
commit | 9bfd587358fb58b98dd0fbdd72069430a89cefc7 (patch) | |
tree | b3d0d6dc4eae6c5a710ca3adbd6b60ea059d96f7 /source3/include | |
parent | 91d5446390dc41b43fe18785a765bbd71ff709c2 (diff) | |
download | samba-9bfd587358fb58b98dd0fbdd72069430a89cefc7.tar.gz samba-9bfd587358fb58b98dd0fbdd72069430a89cefc7.tar.bz2 samba-9bfd587358fb58b98dd0fbdd72069430a89cefc7.zip |
s3:services_db: remove the TALLOC_CTX argument from svcctl_set_secdesc
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index d7b9cb0a93..b076e230f7 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -4397,7 +4397,8 @@ bool init_service_op_table( void ); void svcctl_init_keys( void ); struct security_descriptor *svcctl_get_secdesc( TALLOC_CTX *ctx, const char *name, struct security_token *token ); -bool svcctl_set_secdesc( TALLOC_CTX *ctx, const char *name, struct security_descriptor *sec_desc, struct security_token *token ); +bool svcctl_set_secdesc(const char *name, struct security_descriptor *sec_desc, + struct security_token *token); const char *svcctl_lookup_dispname(TALLOC_CTX *ctx, const char *name, struct security_token *token ); const char *svcctl_lookup_description(TALLOC_CTX *ctx, const char *name, struct security_token *token ); struct regval_ctr *svcctl_fetch_regvalues( const char *name, struct security_token *token ); |