]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Correct the spelling of 'hierarchy'
authorTim Kientzle <kientzle@gmail.com>
Sat, 20 Feb 2010 18:25:58 +0000 (13:25 -0500)
committerTim Kientzle <kientzle@gmail.com>
Sat, 20 Feb 2010 18:25:58 +0000 (13:25 -0500)
SVN-Revision: 1923

cpio/bsdcpio.1
libarchive/archive_write_disk.3
tar/test/test_option_T_upper.c
tar/test/test_option_s.c
tar/tree.c

index 79b6997ef4a8e71da71a30125b29a95c06d6c528..bb69fd1578d441b2bc9e290405184a45aa4d5528 100644 (file)
@@ -295,7 +295,7 @@ for more information.
 .Sh EXAMPLES
 The
 .Nm
-command is traditionally used to copy file heirarchies in conjunction
+command is traditionally used to copy file hierarchies in conjunction
 with the
 .Xr find 1
 command.
index 7bcecc4e0d3a836b17a16a5c19fae34d9e6cb291..99878b7192e03a9dfd96b52a607f821aa281ce18 100644 (file)
@@ -339,7 +339,7 @@ In particular, the directory
 .Pa aa
 is created as well as the final object
 .Pa bb .
-In theory, this can be exploited to create an entire directory heirarchy
+In theory, this can be exploited to create an entire directory hierarchy
 with a single request.
 Of course, this does not work if the
 .Cm ARCHIVE_EXTRACT_NODOTDOT
@@ -371,5 +371,5 @@ compact implementation when appropriate.
 .Pp
 There should be a corresponding
 .Nm archive_read_disk
-interface that walks a directory heirarchy and returns archive
+interface that walks a directory hierarchy and returns archive
 entry objects.
index 3d2a8b1e2a53ee5895a2510d860645b2c383d3f2..99554f0299a04c2a3677c99bad9aa24b5ada0049 100644 (file)
@@ -49,7 +49,7 @@ DEFINE_TEST(test_option_T_upper)
        struct stat st;
        int gnarlyFilesSupported;
 
-       /* Create a simple dir heirarchy; bail if anything fails. */
+       /* Create a simple dir hierarchy; bail if anything fails. */
        if (!assertMakeDir("d1", 0755)) return;
        if (!assertMakeDir("d1/d2", 0755))      return;
        if (!touch("f", 1)) return;
index 8eb415e1cea722053edffeb0df55eda8dd5ed4a7..701f07c3cd32a8997825c10688dd8e7c3cc91736 100644 (file)
@@ -44,7 +44,7 @@ DEFINE_TEST(test_option_s)
 {
        struct stat st;
 
-       /* Create a sample file heirarchy. */
+       /* Create a sample file hierarchy. */
        assertMakeDir("in", 0755);
        assertMakeDir("in/d1", 0755);
        assertEqualInt(0, mkfile("in/d1/foo", "foo"));
index 6504ebf7d06ccd662f57b51a3a933d547491211f..da8962bc3111be2586d8706352e55ca145f65c2d 100644 (file)
@@ -401,7 +401,7 @@ tree_next(struct tree *t)
         * violation.  Just crash now. */
        if (t->visit_type == TREE_ERROR_FATAL) {
                fprintf(stderr, "Unable to continue traversing"
-                   " directory heirarchy after a fatal error.");
+                   " directory hierarchy after a fatal error.");
                abort();
        }