From: Marco Bettini Date: Fri, 4 Mar 2022 11:05:00 +0000 (+0000) Subject: lib: struct file_lock_settings - Swap inverted comments X-Git-Tag: 2.4.0~4110 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ae71828e55f1b1ce61d42d115f607a242ea37762;p=thirdparty%2Fdovecot%2Fcore.git lib: struct file_lock_settings - Swap inverted comments --- diff --git a/src/lib/file-lock.h b/src/lib/file-lock.h index 141c763a9a..2ad578cc4a 100644 --- a/src/lib/file-lock.h +++ b/src/lib/file-lock.h @@ -16,12 +16,12 @@ enum file_lock_method { struct file_lock_settings { enum file_lock_method lock_method; - /* When the lock is freed, close the fd automatically. This can - be useful for files that are only created to exist as lock files. */ - bool unlink_on_free:1; /* When the lock is freed, unlink() the file automatically, unless other processes are already waiting on the lock. This can be useful for files that are only created to exist as lock files. */ + bool unlink_on_free:1; + /* When the lock is freed, close the fd automatically. This can + be useful for files that are only created to exist as lock files. */ bool close_on_free:1; /* Do not panic when the kernel returns EDEADLK while acquiring the lock. */