1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

Spelling fixes s/hierachy/hierarchy/

Signed-off-by: Mathieu Parent <math.parent@gmail.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
This commit is contained in:
Mathieu Parent 2019-08-29 21:50:45 +02:00 committed by Andrew Bartlett
parent a12d843b2c
commit a59e0ec895
3 changed files with 3 additions and 3 deletions

View File

@ -267,7 +267,7 @@ static bool test_tfork_process_hierarchy(struct torture_context *tctx)
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);

View File

@ -1425,7 +1425,7 @@ static void cli_session_setup_creds_cleanup(struct tevent_req *req,
* 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);

View File

@ -1511,7 +1511,7 @@ sub DESTROY {
=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>.