From 2dbfaa260b81b4993010fdc545d563739435692c Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Tue, 12 Oct 2004 16:26:19 +0000 Subject: Don't send lines that are too long to syslog --- common/smtppass.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'common/smtppass.c') diff --git a/common/smtppass.c b/common/smtppass.c index e00f7a1..3205026 100644 --- a/common/smtppass.c +++ b/common/smtppass.c @@ -1094,16 +1094,16 @@ void sp_add_log(spctx_t* ctx, char* prefix, char* line) int l = strlen(t); int x; - ASSERT(l <= SP_LINE_LENGTH); + ASSERT(l <= SP_LOG_LINE_LEN); /* Add up necessary lengths */ x = 2 + strlen(prefix) + strlen(line) + 1; - if(l + x >= SP_LINE_LENGTH) - l = SP_LINE_LENGTH - x; + if(l + x >= SP_LOG_LINE_LEN) + l = SP_LOG_LINE_LEN - x; t += l; - l = SP_LINE_LENGTH - l; + l = SP_LOG_LINE_LEN - l; *t = 0; -- cgit v1.2.3