Two compiler warnings in sieve.c.
authorPhilip Hazel <ph10@hermes.cam.ac.uk>
Tue, 4 Apr 2006 08:35:39 +0000 (08:35 +0000)
committerPhilip Hazel <ph10@hermes.cam.ac.uk>
Tue, 4 Apr 2006 08:35:39 +0000 (08:35 +0000)
doc/doc-txt/ChangeLog
src/src/sieve.c

index 4509b13e88991eb71222f7b4dfccc156437fb07a..ddc8b47abfddfd71e10576e91989caf07cb7abf7 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.335 2006/03/20 10:55:21 ph10 Exp $
+$Cambridge: 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
 -------------------------------------------
 
 Change log file for Exim from version 4.21
 -------------------------------------------
@@ -334,6 +334,12 @@ PH/68 The bounce_return_message and bounce_return_body options were not being
       include only those that have been read before the error was detected.
       (In the case of an ACL rejection, they have all been read.)
 
       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
 -----------------
 
 Exim version 4.60
 -----------------
index 3b0199d49903e5be99f26944b8b8f2aaf6652f7d..5ad1bbebd239b031e042db60347aa9a178cbc5ed 100644 (file)
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/sieve.c,v 1.19 2006/03/08 11:13:07 ph10 Exp $ */
+/* $Cambridge: exim/src/src/sieve.c,v 1.20 2006/04/04 08:35:39 ph10 Exp $ */
 
 /*************************************************
 *     Exim - an Internet mail transport agent    *
 
 /*************************************************
 *     Exim - an Internet mail transport agent    *
@@ -400,7 +400,7 @@ if (*uri=='?')
         return -1;
         }
       }
         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);
       {
       new=store_get(sizeof(string_item));
       new->text=store_get(hvalue.length+1);
@@ -409,7 +409,7 @@ if (*uri=='?')
       new->next=*recipient;
       *recipient=new;
       }
       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;
       *body=hvalue;
     if (*uri=='&') ++uri;
     else break;