summaryrefslogtreecommitdiff
path: root/common/smtppass.c
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2004-10-12 16:26:19 +0000
committerStef Walter <stef@memberwebs.com>2004-10-12 16:26:19 +0000
commitbc1291991f7f9feef10f7a41be050654011f5bfe (patch)
tree3842b73ac627f29e2b3da6495ad314a435460fcd /common/smtppass.c
parent46a9ccefc1595da1afbb7a2a9279311a987ff53f (diff)
Don't send lines that are too long to syslog
Diffstat (limited to 'common/smtppass.c')
-rw-r--r--common/smtppass.c8
1 files changed, 4 insertions, 4 deletions
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;