From: Zbigniew Jędrzejewski-Szmek Date: Thu, 30 Mar 2023 14:19:25 +0000 (+0200) Subject: basic/fs-util: typo fix X-Git-Tag: v254-rc1~822^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2657d5bddc7f1cca6102243b65b912823de12da7;p=thirdparty%2Fsystemd.git basic/fs-util: typo fix --- diff --git a/src/basic/fs-util.c b/src/basic/fs-util.c index cb323a64031..3722eb638b4 100644 --- a/src/basic/fs-util.c +++ b/src/basic/fs-util.c @@ -824,7 +824,7 @@ int conservative_renameat( * 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 - * too much. i.e. whenever we are in doubt we rather rename than fail. After all reducing inotify + * too much. I.e. whenever we are in doubt, we rather rename than fail. After all reducing inotify * events is an optimization only, not more. */ old_fd = openat(olddirfd, oldpath, O_CLOEXEC|O_RDONLY|O_NOCTTY|O_NOFOLLOW);