ph10 2006/04/04 09:35:39 BST
Modified files:
exim-doc/doc-txt ChangeLog
exim-src/src sieve.c
Log:
Two compiler warnings in sieve.c.
Revision Changes Path
1.336 +6 -0 exim/exim-doc/doc-txt/ChangeLog
1.20 +2 -2 exim/exim-src/src/sieve.c
Index: ChangeLog
===================================================================
RCS file: /home/cvs/exim/exim-doc/doc-txt/ChangeLog,v
retrieving revision 1.335
retrieving revision 1.336
diff -u -r1.335 -r1.336
--- ChangeLog 20 Mar 2006 10:55:21 -0000 1.335
+++ ChangeLog 4 Apr 2006 08:35:39 -0000 1.336
@@ -1,4 +1,4 @@
-$Cambridge: exim/exim-doc/doc-txt/ChangeLog,v 1.335 2006/03/20 10:55:21 ph10 Exp $
+$Cambridge: exim/exim-doc/doc-txt/ChangeLog,v 1.336 2006/04/04 08:35:39 ph10 Exp $
Change log file for Exim from version 4.21
-------------------------------------------
@@ -333,6 +333,12 @@
body is false, the headers that are returned for a non-SMTP message
include only those that have been read before the error was detected.
(In the case of an ACL rejection, they have all been read.)
+
+PH/69 The HTML version of the specification is now built in a directory called
+ spec_html instead of spec.html, because the latter looks like a path with
+ a MIME-type, and this confuses some software.
+
+PH/70 Catch two compiler warnings in sieve.c.
Exim version 4.60
Index: sieve.c
===================================================================
RCS file: /home/cvs/exim/exim-src/src/sieve.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- sieve.c 8 Mar 2006 11:13:07 -0000 1.19
+++ sieve.c 4 Apr 2006 08:35:39 -0000 1.20
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/exim-src/src/sieve.c,v 1.19 2006/03/08 11:13:07 ph10 Exp $ */
+/* $Cambridge: exim/exim-src/src/sieve.c,v 1.20 2006/04/04 08:35:39 ph10 Exp $ */
/*************************************************
* Exim - an Internet mail transport agent *
@@ -400,7 +400,7 @@
return -1;
}
}
- if (hname.length==2 && strcmp(hname.character,"to")==0)
+ if (hname.length==2 && strcmp(CS hname.character,"to")==0)
{
new=store_get(sizeof(string_item));
new->text=store_get(hvalue.length+1);
@@ -409,7 +409,7 @@
new->next=*recipient;
*recipient=new;
}
- else if (hname.length==4 && strcmp(hname.character,"body")==0)
+ else if (hname.length==4 && strcmp(CS hname.character,"body")==0)
*body=hvalue;
if (*uri=='&') ++uri;
else break;