diff options
author | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2001-08-21 20:04:13 +0000 |
---|---|---|
committer | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2001-08-21 20:04:13 +0000 |
commit | 45859e47167cc3b9409990cbf1082c28d2d11b76 (patch) | |
tree | bb4fc5bf00b14a6671afe0bb125b41f6d15380cf /usr.sbin/popa3d/params.h | |
parent | 83f8ee5ea28222a99c22a049a1d9856c7487aa0b (diff) |
use FLOCK
from Solar; ran it by millert@
Diffstat (limited to 'usr.sbin/popa3d/params.h')
-rw-r--r-- | usr.sbin/popa3d/params.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/popa3d/params.h b/usr.sbin/popa3d/params.h index 03145b92f55..37319312161 100644 --- a/usr.sbin/popa3d/params.h +++ b/usr.sbin/popa3d/params.h @@ -1,4 +1,4 @@ -/* $OpenBSD: params.h,v 1.1 2001/08/19 13:05:57 deraadt Exp $ */ +/* $OpenBSD: params.h,v 1.2 2001/08/21 20:04:12 camield Exp $ */ /* * Global POP daemon parameters. @@ -142,8 +142,8 @@ * Locking method your system uses for user mailboxes. It is important * that you set this correctly. */ -#define LOCK_FCNTL 1 -#define LOCK_FLOCK 0 +#define LOCK_FCNTL 0 +#define LOCK_FLOCK 1 /* * How do we talk to syslogd? These should be fine for most systems. |