diff options
author | Kamen Mazdrashki <kamen.mazdrashki@postpath.com> | 2009-10-26 03:06:16 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-11-06 14:05:42 +0100 |
commit | ddab9d1fe74c90b2b05cd1712931930e82380913 (patch) | |
tree | f2bd2f124b3972829922c3b480b03caaa922d113 /source4/libnet | |
parent | 28b6eb94944e5bca0fff4aeef181e61926df3568 (diff) | |
download | samba-ddab9d1fe74c90b2b05cd1712931930e82380913.tar.gz samba-ddab9d1fe74c90b2b05cd1712931930e82380913.tar.bz2 samba-ddab9d1fe74c90b2b05cd1712931930e82380913.zip |
s4/drs: dsdb_verify_oid_mappings_drsuapi() replaced by dsdb_schema_pfm_contains_drsuapi_pfm()
dsdb_schema_pfm_contains_drsuapi_pfm() is part of reimplemented
prefixMap interface.
This name was choosen to clearly show, that this a week verification
in case we want to determine if remote schema is changed.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source4/libnet')
-rw-r--r-- | source4/libnet/libnet_vampire.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libnet/libnet_vampire.c b/source4/libnet/libnet_vampire.c index 2c5aae024e..7120d61eed 100644 --- a/source4/libnet/libnet_vampire.c +++ b/source4/libnet/libnet_vampire.c @@ -426,7 +426,7 @@ static NTSTATUS vampire_schema_chunk(void *private_data, s->schema = s->self_made_schema; } else { - status = dsdb_verify_oid_mappings_drsuapi(s->schema, mapping_ctr); + status = dsdb_schema_pfm_contains_drsuapi_pfm(s->schema->prefixmap, mapping_ctr); if (!W_ERROR_IS_OK(status)) { return werror_to_ntstatus(status); } |