ret = sscanf(line, "%d", &ppid);
torture_assert_goto(tctx, ret == 1, ok, child_fail, "sscanf failed\n");
- torture_assert_goto(tctx, ppid == pid, ok, child_fail, "process hierachy not rooted at caller\n");
+ torture_assert_goto(tctx, ppid == pid, ok, child_fail, "process hierarchy not rooted at caller\n");
_exit(0);
* We only call data_blob_clear() as
* some of the blobs point to the same memory.
*
- * We let the talloc hierachy free the memory.
+ * We let the talloc hierarchy free the memory.
*/
data_blob_clear(&state->apassword_blob);
data_blob_clear(&state->upassword_blob);
=head4 C<< File::walk( sub { ... }, @files) >>
-Iterate on file hierachy in C<@files> and return accumulated results.
+Iterate on file hierarchy in C<@files> and return accumulated results.
Use C<$_> in the sub to access the current C<File>.