From: Antonio Alvarez Feijoo Date: Fri, 24 Mar 2023 13:53:29 +0000 (+0100) Subject: fs-util: fix typo in comment X-Git-Tag: v254-rc1~628^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=737a9edc888c0c5763c724ad565ae6bbe43bdbe5;p=thirdparty%2Fsystemd.git fs-util: fix typo in comment --- diff --git a/src/basic/fs-util.c b/src/basic/fs-util.c index 7f1f90f4e9d..b942abd477e 100644 --- a/src/basic/fs-util.c +++ b/src/basic/fs-util.c @@ -807,7 +807,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