Make SUN compiler happy. Fixes #902
authorTom Kistner <tom@duncanthrax.net>
Mon, 9 Nov 2009 14:31:24 +0000 (14:31 +0000)
committerTom Kistner <tom@duncanthrax.net>
Mon, 9 Nov 2009 14:31:24 +0000 (14:31 +0000)
src/src/dkim.c
src/src/mime.c

index eff59df0b7ad31dd0035fa72be7332147ff50ce8..bcf12ce1ebdc5cb6586b2aab0f5114e23642e585 100644 (file)
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/dkim.c,v 1.7 2009/10/15 15:44:51 tom Exp $ */
+/* $Cambridge: exim/src/src/dkim.c,v 1.8 2009/11/09 14:31:24 tom Exp $ */
 
 /*************************************************
 *     Exim - an Internet mail transport agent    *
@@ -525,6 +525,6 @@ uschar *dkim_exim_sign(int dkim_fd,
   store_pool = old_pool;
   errno = save_errno;
   return rc;
-};
+}
 
 #endif
index cc8a337ae32d5bdf834a85773d112e4ca7322a1d..7b3ec2580fce335ebbadbd8b91dddc7dbe68516b 100644 (file)
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/mime.c,v 1.17 2009/11/07 17:17:15 nm4 Exp $ */
+/* $Cambridge: exim/src/src/mime.c,v 1.18 2009/11/09 14:31:24 tom Exp $ */
 
 /*************************************************
 *     Exim - an Internet mail transport agent    *
@@ -106,7 +106,7 @@ static int mime_decode_base64(FILE* in, FILE* out, uschar* boundary)
 
   opos = obuf;
 
-  while (fgets(ibuf, MIME_MAX_LINE_LENGTH, in) != NULL)
+  while (fgets((char *)ibuf, MIME_MAX_LINE_LENGTH, in) != NULL)
   {
     if (boundary != NULL
       && Ustrncmp(ibuf, "--", 2) == 0