mirror of
https://git.freebsd.org/ports.git
synced 2025-05-27 16:36:28 -04:00
- Update courier-imap to 4.16.1 - Update maildrop to 2.8.2 - Update sqwebmail to 5.8.2 - Update courier-authlib to 0.66.2 - Some plist and Makefile modernization Approved by: oliver@ (as maintainer of various of these ports) Differential Revision: https://reviews.freebsd.org/D2391
11 lines
369 B
C
11 lines
369 B
C
--- libs/maildrop/filelock.C.orig 2013-08-25 18:54:20 UTC
|
|
+++ libs/maildrop/filelock.C
|
|
@@ -63,7 +63,7 @@ int flockrc;
|
|
// you're writing to a device file, you know what you're doing.
|
|
|
|
if (fstat(fd, &stat_buf) >= 0 && (
|
|
- S_ISREG(stat_buf.st_mode) || S_ISDIR(stat_buf.st_mode)))
|
|
+ S_ISCHR(stat_buf.st_mode) || S_ISBLK(stat_buf.st_mode)))
|
|
{
|
|
return;
|
|
}
|