1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

lib:ldb: Fix code spelling

Best reviewed with: `git show --word-diff`.

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz>
This commit is contained in:
Andreas Schneider 2023-04-06 16:01:33 +02:00 committed by Andreas Schneider
parent e288aca9d8
commit 5e9bfcf4b2
4 changed files with 5 additions and 5 deletions

View File

@ -369,7 +369,7 @@ done:
}
/*
* Explicity invalidate the data, as the delete has done this
* Explicitly invalidate the data, as the delete has done this
*/
data.length = 0;
data.data = NULL;

View File

@ -41,7 +41,7 @@ architecture.
<para>
In a taxonomy of databases ldb would sit half way between key/value
pair databases (such as berkley db or tdb) and a full LDAP
pair databases (such as berkeley db or tdb) and a full LDAP
database. With a structured attribute oriented API like LDAP and good
indexing capabilities, ldb can be used for quite sophisticated
applications that need a light weight database, without the

View File

@ -53,7 +53,7 @@ struct ldbtest_ctx {
*
* This test checks the current behaviour of the function, however
* this is not in a public ABI and many of the tested behaviours are
* not ideal. If the behaviour is deliberatly improved, this test
* not ideal. If the behaviour is deliberately improved, this test
* should be updated without worry to the new better behaviour.
*
* In particular the test is particularly to ensure the current
@ -209,7 +209,7 @@ static void test_filter_attrs_in_place_two_attr_matched_attrs(void **state)
struct ldb_message *msg = ldb_msg_new(ctx);
/* deliberatly the other order */
/* deliberately the other order */
const char *attrs[] = {"bar", "foo", NULL};
char value1[] = "The value.......end";

View File

@ -35,7 +35,7 @@
#include "ldbutil.h"
/* autostarts a transacion if none active */
/* autostarts a transaction if none active */
static int ldb_do_autotransaction(struct ldb_context *ldb,
struct ldb_request *req)
{