diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-06-02 21:43:55 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-06-07 14:47:21 +0200 |
commit | 0ca17eaa15641708acf182b9ed1cb33222b05617 (patch) | |
tree | 731a0e9c7e41d17d7911f8f86dd4ee0aaf4eb67e /source4 | |
parent | c6020ccb87337b9045c51674d4d01c19f43fd288 (diff) | |
download | samba-0ca17eaa15641708acf182b9ed1cb33222b05617.tar.gz samba-0ca17eaa15641708acf182b9ed1cb33222b05617.tar.bz2 samba-0ca17eaa15641708acf182b9ed1cb33222b05617.zip |
s4:objectclass LDB module - cosmetic change
Diffstat (limited to 'source4')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/objectclass.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/objectclass.c b/source4/dsdb/samdb/ldb_modules/objectclass.c index 53863b61df..5ad68aef39 100644 --- a/source4/dsdb/samdb/ldb_modules/objectclass.c +++ b/source4/dsdb/samdb/ldb_modules/objectclass.c @@ -485,14 +485,15 @@ static int objectclass_do_add(struct oc_context *ac) } } else { - /* Fix up the DN to be in the standard form, taking particular care to match the parent DN */ + /* Fix up the DN to be in the standard form, taking + * particular care to match the parent DN */ ret = fix_dn(msg, ac->req->op.add.message->dn, ac->search_res->message->dn, &msg->dn); if (ret != LDB_SUCCESS) { - ldb_asprintf_errstring(ldb, "Could not munge DN %s into normal form", + ldb_asprintf_errstring(ldb, "objectclass: Could not munge DN %s into normal form", ldb_dn_get_linearized(ac->req->op.add.message->dn)); talloc_free(mem_ctx); return ret; |