aboutsummaryrefslogtreecommitdiffstats
path: root/smtpd/queue_ram.c
diff options
context:
space:
mode:
authorgilles <gilles@poolp.org>2013-03-23 12:43:13 +0100
committergilles <gilles@poolp.org>2013-03-23 12:43:13 +0100
commitf68134e5024010af74bf2a192c2e7dcc92f4a5de (patch)
tree9387a3a1e75d23a087a4a7d8c28c615462d0a82a /smtpd/queue_ram.c
parentremove param.h from parse.y (diff)
downloadOpenSMTPD-f68134e5024010af74bf2a192c2e7dcc92f4a5de.tar.xz
OpenSMTPD-f68134e5024010af74bf2a192c2e7dcc92f4a5de.zip
use smtpd defines rather than system defines for buffer sizes
Diffstat (limited to 'smtpd/queue_ram.c')
-rw-r--r--smtpd/queue_ram.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/smtpd/queue_ram.c b/smtpd/queue_ram.c
index 488230e7..9ba6eacb 100644
--- a/smtpd/queue_ram.c
+++ b/smtpd/queue_ram.c
@@ -75,7 +75,7 @@ queue_ram_init(int server)
static int
queue_ram_message(enum queue_op qop, uint32_t *msgid)
{
- char path[MAXPATHLEN];
+ char path[SMTPD_MAXPATHLEN];
uint64_t evpid;
struct qr_envelope *evp;
struct qr_message *msg;