From: Timo Sirainen Date: Thu, 19 Jun 2003 00:46:02 +0000 (+0300) Subject: We were sending \0 instead of \r with non-x86 systems. X-Git-Tag: 1.1.alpha1~4546 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8189b30f677a257b12e51d2fe0450eb6f2e7017e;p=thirdparty%2Fdovecot%2Fcore.git We were sending \0 instead of \r with non-x86 systems. --HG-- branch : HEAD --- diff --git a/src/lib-mail/message-send.c b/src/lib-mail/message-send.c index 95cfec2d0c..e3566c3fe6 100644 --- a/src/lib-mail/message-send.c +++ b/src/lib-mail/message-send.c @@ -16,7 +16,8 @@ off_t message_send(struct ostream *output, struct istream *input, uoff_t old_limit, limit; size_t i, size; off_t ret; - int cr_skipped, add; + int cr_skipped; + unsigned char add; if (last_cr != NULL) *last_cr = -1;