]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tmpfile-util: typo fixes
authorLennart Poettering <lennart@poettering.net>
Thu, 25 Jun 2020 13:24:06 +0000 (15:24 +0200)
committerLennart Poettering <lennart@poettering.net>
Fri, 26 Jun 2020 08:41:52 +0000 (10:41 +0200)
src/basic/tmpfile-util.c

index 9cbca312fcfcf0aad8dbaa400cfeb6f66ec379a8..a49f7eee702efa7778534e7fcf590d8459926a1e 100644 (file)
@@ -257,7 +257,7 @@ int open_tmpfile_linkable(const char *target, int flags, char **ret_path) {
         assert((flags & O_EXCL) == 0);
 
         /* Creates a temporary file, that shall be renamed to "target" later. If possible, this uses O_TMPFILE – in
-         * which case "ret_path" will be returned as NULL. If not possible a the tempoary path name used is returned in
+         * which case "ret_path" will be returned as NULL. If not possible the temporary path name used is returned in
          * "ret_path". Use link_tmpfile() below to rename the result after writing the file in full. */
 
         fd = open_parent(target, O_TMPFILE|flags, 0640);