From acd3a6bb6c1d050ac3cf3cc845f2b10607aeb105 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 11 Jun 2012 17:51:05 +0200 Subject: s4:registry:testsuite: fix use of non-existent word (existant) --- source4/lib/registry/tests/hive.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/lib') diff --git a/source4/lib/registry/tests/hive.c b/source4/lib/registry/tests/hive.c index c5632b882b..2bc2e57b68 100644 --- a/source4/lib/registry/tests/hive.c +++ b/source4/lib/registry/tests/hive.c @@ -29,7 +29,7 @@ #include "libcli/security/security.h" #include "lib/registry/tests/proto.h" -static bool test_del_nonexistant_key(struct torture_context *tctx, +static bool test_del_nonexistent_key(struct torture_context *tctx, const void *test_data) { const struct hive_key *root = (const struct hive_key *)test_data; @@ -346,8 +346,8 @@ static bool test_hive_security(struct torture_context *tctx, const void *_data) static void tcase_add_tests(struct torture_tcase *tcase) { - torture_tcase_add_simple_test_const(tcase, "del_nonexistant_key", - test_del_nonexistant_key); + torture_tcase_add_simple_test_const(tcase, "del_nonexistent_key", + test_del_nonexistent_key); torture_tcase_add_simple_test_const(tcase, "add_subkey", test_add_subkey); torture_tcase_add_simple_test(tcase, "flush_key", -- cgit