diff options
author | Michael Adam <obnox@samba.org> | 2012-06-11 17:51:05 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-06-12 07:21:44 +0200 |
commit | acd3a6bb6c1d050ac3cf3cc845f2b10607aeb105 (patch) | |
tree | 56a99360321ca2df07114de9ec7fd6fe0725d8f8 /source4/lib/registry | |
parent | d91182c5ae0466773d59894abc5bb29cfd2c80ad (diff) | |
download | samba-acd3a6bb6c1d050ac3cf3cc845f2b10607aeb105.tar.gz samba-acd3a6bb6c1d050ac3cf3cc845f2b10607aeb105.tar.xz samba-acd3a6bb6c1d050ac3cf3cc845f2b10607aeb105.zip |
s4:registry:testsuite: fix use of non-existent word (existant)
Diffstat (limited to 'source4/lib/registry')
-rw-r--r-- | source4/lib/registry/tests/hive.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/registry/tests/hive.c b/source4/lib/registry/tests/hive.c index c5632b882b2..2bc2e57b687 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", |