diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2012-07-17 11:34:48 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2012-07-17 11:34:48 +0000 |
commit | 6c128ffc1de8ec14efcc669905a00c621be3dc8e (patch) | |
tree | 05a2fe2b62a2581b57f20157fce0231316d39000 /usr.sbin/popa3d | |
parent | 500c84af9febd3eda27c3be6bfdfab1f86f62ab5 (diff) |
Use correct types for (large) constants. Found a diff like this in my
tree; don't know where it was coming from. ok krw@ mikeb@
Diffstat (limited to 'usr.sbin/popa3d')
-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 f9949d45be1..f27e171eaa8 100644 --- a/usr.sbin/popa3d/params.h +++ b/usr.sbin/popa3d/params.h @@ -1,4 +1,4 @@ -/* $OpenBSD: params.h,v 1.9 2009/12/16 20:42:26 sobrado Exp $ */ +/* $OpenBSD: params.h,v 1.10 2012/07/17 11:34:47 otto Exp $ */ /* * Global POP daemon parameters. @@ -134,8 +134,8 @@ * a single huge mailbox from stopping the entire POP service. */ #define MAX_MAILBOX_MESSAGES 200000 -#define MAX_MAILBOX_OPEN_BYTES 2000000000 -#define MAX_MAILBOX_WORK_BYTES 2500000000 +#define MAX_MAILBOX_OPEN_BYTES 2000000000LL +#define MAX_MAILBOX_WORK_BYTES 2500000000LL #if !VIRTUAL_ONLY |