diff options
author | Simo Sorce <idra@samba.org> | 2006-08-17 20:06:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:16:15 -0500 |
commit | f41fc00624df538c3ee719260a317440550ed4a1 (patch) | |
tree | f13ba372b072bf136b8e4f371e729cf45773583e | |
parent | 01bb4849fce0ab3c65fbbee8e705c1114fdf2b79 (diff) | |
download | samba-f41fc00624df538c3ee719260a317440550ed4a1.tar.gz samba-f41fc00624df538c3ee719260a317440550ed4a1.tar.bz2 samba-f41fc00624df538c3ee719260a317440550ed4a1.zip |
r17596: apply patch from Martin
(This used to be commit e9d101bc3c1e7c1e8b6560a1f7161e6eb270c7df)
-rw-r--r-- | source4/lib/ldb/modules/ldb_map.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/lib/ldb/modules/ldb_map.c b/source4/lib/ldb/modules/ldb_map.c index 8eff612d1b..5f14e96dd8 100644 --- a/source4/lib/ldb/modules/ldb_map.c +++ b/source4/lib/ldb/modules/ldb_map.c @@ -806,11 +806,11 @@ static int map_objectclass_convert_operator(struct ldb_module *module, void *mem { static const struct ldb_map_attribute objectclass_map = { - .local_name = "objectclass", + .local_name = "objectClass", .type = MAP_CONVERT, .u = { .convert = { - .remote_name = "objectclass", + .remote_name = "objectClass", .convert_local = map_objectclass_convert_local, .convert_remote = map_objectclass_convert_remote, }, @@ -1160,12 +1160,12 @@ static const struct ldb_map_attribute builtin_attribute_maps[] = { }, }, { - .local_name = "objectclass", + .local_name = "objectClass", .type = MAP_GENERATE, .convert_operator = map_objectclass_convert_operator, .u = { .generate = { - .remote_names = { "objectclass", NULL }, + .remote_names = { "objectClass", NULL }, .generate_local = map_objectclass_generate_local, .generate_remote = map_objectclass_generate_remote, }, |