diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-12-31 12:55:28 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:30:37 -0500 |
commit | ab56d5ebb87543592eea9528d51fce76cb8d88f0 (patch) | |
tree | c89e2bc487bb7925b7a9ef90684d90548000defd /source4/dsdb/schema | |
parent | 41d6fe36e7f4cd5170fdbed108b8e4d429e94338 (diff) | |
download | samba-ab56d5ebb87543592eea9528d51fce76cb8d88f0.tar.gz samba-ab56d5ebb87543592eea9528d51fce76cb8d88f0.tar.bz2 samba-ab56d5ebb87543592eea9528d51fce76cb8d88f0.zip |
r20439: this should be const pointers
metze
(This used to be commit 1313b4774542fe5a0013d501225d5b4e8d585128)
Diffstat (limited to 'source4/dsdb/schema')
-rw-r--r-- | source4/dsdb/schema/schema_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/dsdb/schema/schema_init.c b/source4/dsdb/schema/schema_init.c index 1f8c87f851..6e903ab52f 100644 --- a/source4/dsdb/schema/schema_init.c +++ b/source4/dsdb/schema/schema_init.c @@ -132,7 +132,7 @@ WERROR dsdb_verify_oid_mappings(const struct dsdb_schema *schema, const struct d return WERR_OK; } -WERROR dsdb_map_oid2int(struct dsdb_schema *schema, const char *in, uint32_t *out) +WERROR dsdb_map_oid2int(const struct dsdb_schema *schema, const char *in, uint32_t *out) { uint32_t i; @@ -178,7 +178,7 @@ WERROR dsdb_map_oid2int(struct dsdb_schema *schema, const char *in, uint32_t *ou return WERR_DS_NO_MSDS_INTID; } -WERROR dsdb_map_int2oid(struct dsdb_schema *schema, uint32_t in, TALLOC_CTX *mem_ctx, const char **out) +WERROR dsdb_map_int2oid(const struct dsdb_schema *schema, uint32_t in, TALLOC_CTX *mem_ctx, const char **out) { uint32_t i; |