summaryrefslogtreecommitdiff
path: root/source3/include/passdb.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-03-28 03:27:44 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:56:21 -0500
commit202c7b4571824406c5751018aa1896a31f73c24e (patch)
tree11757732f51313bd57d8ca69722885f68ea4b448 /source3/include/passdb.h
parente0c51ee41fc8cab303459b77c123c1c1b0739eba (diff)
downloadsamba-202c7b4571824406c5751018aa1896a31f73c24e.tar.gz
samba-202c7b4571824406c5751018aa1896a31f73c24e.tar.bz2
samba-202c7b4571824406c5751018aa1896a31f73c24e.zip
r6092: This much const causes the compiler on Fedora Core 2
to throw up. Jeremy. (This used to be commit 051f0ed8075a3616484888ab22d68ca11aa1dd36)
Diffstat (limited to 'source3/include/passdb.h')
-rw-r--r--source3/include/passdb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/passdb.h b/source3/include/passdb.h
index f711eaf578..2c63271492 100644
--- a/source3/include/passdb.h
+++ b/source3/include/passdb.h
@@ -339,7 +339,7 @@ typedef struct pdb_context
NTSTATUS (*pdb_enum_alias_memberships)(struct pdb_context *context,
TALLOC_CTX *mem_ctx,
const DOM_SID *domain_sid,
- const DOM_SID const *members,
+ const DOM_SID *members,
int num_members,
uint32 **alias_rids,
int *num_alias_rids);
@@ -449,7 +449,7 @@ typedef struct pdb_methods
NTSTATUS (*enum_alias_memberships)(struct pdb_methods *methods,
TALLOC_CTX *mem_ctx,
const DOM_SID *domain_sid,
- const DOM_SID const *members,
+ const DOM_SID *members,
int num_members,
uint32 **alias_rids,
int *num_alias_rids);