]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
lib/path: fix typos
authorTobias Stoeckmann <tobias@stoeckmann.org>
Sun, 8 Oct 2023 18:51:07 +0000 (20:51 +0200)
committerKarel Zak <kzak@redhat.com>
Fri, 24 Nov 2023 10:07:18 +0000 (11:07 +0100)
Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
lib/path.c

index 258fa048d63fd604e3b409787ed126dd6f6c1c78..9a2d2bfb1965c7bb68764c33e8cf46a6bcd017dd 100644 (file)
@@ -483,7 +483,7 @@ FILE *ul_path_fopenf(struct path_cxt *pc, const char *mode, const char *path, ..
 }
 
 /*
- * Open directory @path in read-onl mode. If the path is NULL then duplicate FD
+ * Open directory @path in read-only mode. If the path is NULL then duplicate FD
  * to the directory addressed by @pc.
  */
 DIR *ul_path_opendir(struct path_cxt *pc, const char *path)
@@ -517,7 +517,7 @@ DIR *ul_path_opendir(struct path_cxt *pc, const char *path)
 
 
 /*
- * Open directory @path in read-onl mode. If the path is NULL then duplicate FD
+ * Open directory @path in read-only mode. If the path is NULL then duplicate FD
  * to the directory addressed by @pc.
  */
 DIR *ul_path_vopendirf(struct path_cxt *pc, const char *path, va_list ap)
@@ -528,7 +528,7 @@ DIR *ul_path_vopendirf(struct path_cxt *pc, const char *path, va_list ap)
 }
 
 /*
- * Open directory @path in read-onl mode. If the path is NULL then duplicate FD
+ * Open directory @path in read-only mode. If the path is NULL then duplicate FD
  * to the directory addressed by @pc.
  */
 DIR *ul_path_opendirf(struct path_cxt *pc, const char *path, ...)
@@ -644,7 +644,7 @@ int ul_path_read_string(struct path_cxt *pc, char **str, const char *path)
        if (rc < 0)
                return rc;
 
-       /* Remove tailing newline (usual in sysfs) */
+       /* Remove trailing newline (usual in sysfs) */
        if (rc > 0 && *(buf + rc - 1) == '\n')
                --rc;
        if (rc == 0)
@@ -678,7 +678,7 @@ int ul_path_read_buffer(struct path_cxt *pc, char *buf, size_t bufsz, const char
                buf[0] = '\0';
 
        else if (rc > 0) {
-               /* Remove tailing newline (usual in sysfs) */
+               /* Remove trailing newline (usual in sysfs) */
                if (*(buf + rc - 1) == '\n')
                        buf[--rc] = '\0';
                else
@@ -975,7 +975,7 @@ int ul_path_countf_dirents(struct path_cxt *pc, const char *path, ...)
        return !p ? -errno : ul_path_count_dirents(pc, p);
 }
 
-/* first call (when @sub is NULL) opens the directory, last call closes the diretory */
+/* first call (when @sub is NULL) opens the directory, last call closes the directory */
 int ul_path_next_dirent(struct path_cxt *pc, DIR **sub, const char *dirname, struct dirent **d)
 {
        if (!pc || !sub || !d)