summaryrefslogtreecommitdiff
path: root/source3/registry
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2011-07-04 15:23:39 +0200
committerMichael Adam <obnox@samba.org>2011-07-04 20:02:09 +0200
commit2273650ca89c4042d073257383d0e5d28a8a555f (patch)
tree384320982f8fae460f715d126b1974a52f2902aa /source3/registry
parenta8360712e1356a347f49a5208c1388dc5ab96d31 (diff)
downloadsamba-2273650ca89c4042d073257383d0e5d28a8a555f.tar.gz
samba-2273650ca89c4042d073257383d0e5d28a8a555f.tar.bz2
samba-2273650ca89c4042d073257383d0e5d28a8a555f.zip
s3:registry: fix a comment typo
Diffstat (limited to 'source3/registry')
-rw-r--r--source3/registry/reg_backend_db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/registry/reg_backend_db.c b/source3/registry/reg_backend_db.c
index 00a2790a57..4fc2e39a26 100644
--- a/source3/registry/reg_backend_db.c
+++ b/source3/registry/reg_backend_db.c
@@ -648,7 +648,7 @@ static WERROR regdb_delete_key_with_prefix(struct db_context *db,
werr = ntstatus_to_werror(dbwrap_delete_bystring(db, path));
- /* treat "not" found" as ok */
+ /* treat "not found" as ok */
if (W_ERROR_EQUAL(werr, WERR_NOT_FOUND)) {
werr = WERR_OK;
}