diff options
author | Jeremy Allison <jra@samba.org> | 2005-03-28 03:27:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:21 -0500 |
commit | 202c7b4571824406c5751018aa1896a31f73c24e (patch) | |
tree | 11757732f51313bd57d8ca69722885f68ea4b448 /source3/include/passdb.h | |
parent | e0c51ee41fc8cab303459b77c123c1c1b0739eba (diff) | |
download | samba-202c7b4571824406c5751018aa1896a31f73c24e.tar.gz samba-202c7b4571824406c5751018aa1896a31f73c24e.tar.xz 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.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/passdb.h b/source3/include/passdb.h index f711eaf578d..2c63271492d 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); |