summaryrefslogtreecommitdiffstats
path: root/source/tdb
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-05-14 00:46:43 +0000
committerTim Potter <tpot@samba.org>2003-05-14 00:46:43 +0000
commit865c11275685c85124b506c9bbd2a8bde2e760b9 (patch)
treeaf21dcf2a6ef00ae1805118e22bf76f922208ed1 /source/tdb
parent1b4f904277b5e9331cdf4491163f856aa78d0453 (diff)
downloadsamba-865c11275685c85124b506c9bbd2a8bde2e760b9.tar.gz
samba-865c11275685c85124b506c9bbd2a8bde2e760b9.tar.xz
samba-865c11275685c85124b506c9bbd2a8bde2e760b9.zip
spelling
Diffstat (limited to 'source/tdb')
-rw-r--r--source/tdb/tdbutil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/tdb/tdbutil.c b/source/tdb/tdbutil.c
index 69b282cda02..19dfe642df0 100644
--- a/source/tdb/tdbutil.c
+++ b/source/tdb/tdbutil.c
@@ -311,7 +311,7 @@ int32 tdb_change_int32_atomic(TDB_CONTEXT *tdb, const char *keystr, int32 *oldva
if ((val = tdb_fetch_int32(tdb, keystr)) == -1) {
/* The lookup failed */
if (tdb_error(tdb) != TDB_ERR_NOEXIST) {
- /* but not becouse it didn't exist */
+ /* but not because it didn't exist */
goto err_out;
}
@@ -352,7 +352,7 @@ BOOL tdb_change_uint32_atomic(TDB_CONTEXT *tdb, const char *keystr, uint32 *oldv
if (!tdb_fetch_uint32(tdb, keystr, &val)) {
/* It failed */
if (tdb_error(tdb) != TDB_ERR_NOEXIST) {
- /* and not becouse it didn't exist */
+ /* and not because it didn't exist */
goto err_out;
}