From a1117a11c2e81b2208f17fd6ef49778fe0865ece Mon Sep 17 00:00:00 2001 From: Stephan Bosch <stephan@rename-it.nl> Date: Tue, 19 Jan 2010 10:12:00 +0100 Subject: [PATCH] Fixed spelling mistake in error messages. --- src/lib-sieve/sieve-message.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib-sieve/sieve-message.c b/src/lib-sieve/sieve-message.c index 4747494e7..c54e867d4 100644 --- a/src/lib-sieve/sieve-message.c +++ b/src/lib-sieve/sieve-message.c @@ -142,7 +142,7 @@ static void sieve_message_envelope_parse(struct sieve_message_context *msgctx) (msgctx->pool, msgctx->msgdata->to_address); if ( msgctx->envelope_recipient == NULL ) - sieve_sys_error("envelope recipient address '%s' is unparseable", msgctx->msgdata->to_address); + sieve_sys_error("envelope recipient address '%s' is unparsable", msgctx->msgdata->to_address); else if ( msgctx->envelope_recipient->local_part == NULL ) sieve_sys_error("envelope recipient address '%s' is a null path", msgctx->msgdata->to_address); @@ -150,7 +150,7 @@ static void sieve_message_envelope_parse(struct sieve_message_context *msgctx) (msgctx->pool, msgctx->msgdata->return_path); if ( msgctx->envelope_sender == NULL ) - sieve_sys_error("envelope sender address '%s' is unparseable", msgctx->msgdata->return_path); + sieve_sys_error("envelope sender address '%s' is unparsable", msgctx->msgdata->return_path); msgctx->envelope_parsed = TRUE; } -- GitLab