aboutsummaryrefslogtreecommitdiff
path: root/mail/ml/files/patch-impa-4-src-osdep-unix-mmdf.c
blob: 81a7a6ac7b479d6216dfa684acd5a05ac4302657 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- ../imap-4/src/osdep/unix/mmdf.c.orig	Tue Mar 31 13:07:25 1998
+++ ../imap-4/src/osdep/unix/mmdf.c	Sat Aug 20 00:17:25 2005
@@ -869,7 +869,7 @@
 				/* length of internal + message headers */
     iov[j].iov_len = (m->header + m->headersize) - m->internal;
 				/* suppress extra newline if present */
-    if ((iov[j].iov_base)[iov[j].iov_len - 2] == '\n') iov[j++].iov_len--;
+    if (((char *)iov[j].iov_base)[iov[j].iov_len - 2] == '\n') iov[j++].iov_len--;
     else j++;			/* unlikely but... */
 				/* status */
     iov[j].iov_base = status;
@@ -1727,7 +1727,7 @@
 				/* length of internal + message headers */
       iov[j].iov_len = (m->header + m->headersize) - m->internal;
 				/* suppress extra newline if present */
-      if ((iov[j].iov_base)[iov[j].iov_len - 2] == '\n') iov[j++].iov_len--;
+      if (((char *)iov[j].iov_base)[iov[j].iov_len - 2] == '\n') iov[j++].iov_len--;
       else j++;			/* unlikely but... */
 				/* status */
       iov[j].iov_base = LOCAL->buf;