From b057867de3fbb423ef6afb9b7038ab99c83124d8 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 30 Aug 2010 12:59:38 +1000 Subject: s3-privs Remove a pointer from grant_privilege() Andrew Bartlett Signed-off-by: Andrew Tridgell --- source3/utils/net_sam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/utils') diff --git a/source3/utils/net_sam.c b/source3/utils/net_sam.c index 113818200e..4da712d8cc 100644 --- a/source3/utils/net_sam.c +++ b/source3/utils/net_sam.c @@ -712,7 +712,7 @@ static int net_sam_rights_grant(struct net_context *c, int argc, return -1; } - if (!grant_privilege(&sid, &mask)) { + if (!grant_privilege(&sid, mask)) { d_fprintf(stderr, _("Could not grant privilege\n")); return -1; } -- cgit