]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/basic/fs-util.c
Merge pull request #26944 from aafeijoo-suse/systemd-network-generator-initrd-fix
[thirdparty/systemd.git] / src / basic / fs-util.c
index f8cd93800d5cd1c37fa0b66570494c52a1773d44..1e1413dc80eca339ace82b939030f4e2b8569a4d 100644 (file)
@@ -820,7 +820,7 @@ int conservative_renameat(
         _cleanup_close_ int old_fd = -EBADF, new_fd = -EBADF;
         struct stat old_stat, new_stat;
 
-        /* Renames the old path to thew new path, much like renameat() — except if both are regular files and
+        /* Renames the old path to the new path, much like renameat() — except if both are regular files and
          * have the exact same contents and basic file attributes already. In that case remove the new file
          * instead. This call is useful for reducing inotify wakeups on files that are updated but don't
          * actually change. This function is written in a style that we rather rename too often than suppress