summaryrefslogtreecommitdiff
path: root/source3/param
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2006-11-11 18:07:51 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:15:46 -0500
commitbef92ebb257adda6634c559e0240ad4991840212 (patch)
treefb108038ab9789510be96610afd88ce16ae17131 /source3/param
parentb6b84f98c0420f45c498b025d9edbeb7f830205a (diff)
downloadsamba-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/param')
-rw-r--r--source3/param/loadparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index 68dd9d5a97..cb9f8306b0 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -4608,7 +4608,7 @@ static int process_usershare_file(const char *dir_name, const char *file_name, i
}
/* Write the ACL of the new/modified share. */
- if (!set_share_security(ctx, service_name, psd)) {
+ if (!set_share_security(service_name, psd)) {
DEBUG(0, ("process_usershare_file: Failed to set share "
"security for user share %s\n",
service_name ));