From: Lennart Poettering Date: Thu, 25 Jun 2020 13:24:06 +0000 (+0200) Subject: tmpfile-util: typo fixes X-Git-Tag: v246-rc1~79^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6eea6e30ab99f8a3eebaa338c02803f33ab5b855;p=thirdparty%2Fsystemd.git tmpfile-util: typo fixes --- diff --git a/src/basic/tmpfile-util.c b/src/basic/tmpfile-util.c index 9cbca312fcf..a49f7eee702 100644 --- a/src/basic/tmpfile-util.c +++ b/src/basic/tmpfile-util.c @@ -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);