]> 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)
committerTobias Stoeckmann <tobias@stoeckmann.org>
Sun, 8 Oct 2023 18:51:07 +0000 (20:51 +0200)
Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
lib/path.c

index 1e4f36a56eb0ae9ebfd0824941cda85053c0cfcd..c878d2d9629be73dda55be8e145208bc0040494e 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)