1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-20 22:50:26 +03:00

r17596: apply patch from Martin

(This used to be commit e9d101bc3c1e7c1e8b6560a1f7161e6eb270c7df)
This commit is contained in:
Simo Sorce 2006-08-17 20:06:43 +00:00 committed by Gerald (Jerry) Carter
parent 01bb4849fc
commit f41fc00624

View File

@ -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,
},