[exim-cvs] Compiler quietening. Bug 907

Página Principal
Apagar esta mensagem
Responder a esta mensagem
Autor: Exim Git Commits Mailing List
Data:  
Para: exim-cvs
Assunto: [exim-cvs] Compiler quietening. Bug 907
Gitweb: http://git.exim.org/exim.git/commitdiff/7437665e6205079041af7f56bcc3bee0a20c6d5c
Commit:     7437665e6205079041af7f56bcc3bee0a20c6d5c
Parent:     2365d7930c08502de339bf856672ddeed144ca50
Author:     Jeremy Harris <jgh146exb@???>
AuthorDate: Thu May 22 21:50:27 2014 +0100
Committer:  Jeremy Harris <jgh146exb@???>
CommitDate: Thu May 22 21:51:52 2014 +0100


    Compiler quietening.  Bug 907
---
 src/src/exim.c |    5 +++--
 src/src/tls.c  |   10 +++++-----
 src/src/tod.c  |    3 ++-
 3 files changed, 10 insertions(+), 8 deletions(-)


diff --git a/src/src/exim.c b/src/src/exim.c
index 09e9c1c..1435a0a 100644
--- a/src/src/exim.c
+++ b/src/src/exim.c
@@ -399,9 +399,10 @@ if (exim_tvcmp(&now_tv, then_tv) <= 0)
     if (!running_in_test_harness)
       {
       debug_printf("tick check: %lu.%06lu %lu.%06lu\n",
-        then_tv->tv_sec, then_tv->tv_usec, now_tv.tv_sec, now_tv.tv_usec);
+        then_tv->tv_sec, (long) then_tv->tv_usec,
+           now_tv.tv_sec, (long) now_tv.tv_usec);
       debug_printf("waiting %lu.%06lu\n", itval.it_value.tv_sec,
-        itval.it_value.tv_usec);
+        (long) itval.it_value.tv_usec);
       }
     }


diff --git a/src/src/tls.c b/src/src/tls.c
index 841807f..cb7efff 100644
--- a/src/src/tls.c
+++ b/src/src/tls.c
@@ -241,7 +241,7 @@ uschar * match = NULL;
int len;
uschar * list = NULL;

-while (ele = string_nextinlist(&mod, &insep, NULL, 0))
+while ((ele = string_nextinlist(&mod, &insep, NULL, 0)))
   if (ele[0] != '>')
     match = ele;    /* field tag to match */
   else if (ele[1])
@@ -250,7 +250,7 @@ while (ele = string_nextinlist(&mod, &insep, NULL, 0))
 dn_to_list(dn);
 insep = ',';
 len = Ustrlen(match);
-while (ele = string_nextinlist(&dn, &insep, NULL, 0))
+while ((ele = string_nextinlist(&dn, &insep, NULL, 0)))
   if (Ustrncmp(ele, match, len) == 0 && ele[len] == '=')
     list = string_append_listele(list, outsep, ele+len+1);
 return list;
@@ -301,10 +301,10 @@ uschar * cmpname;
 if ((altnames = tls_cert_subject_altname(cert, US"dns")))
   {
   int alt_sep = '\n';
-  while (cmpname = string_nextinlist(&namelist, &cmp_sep, NULL, 0))
+  while ((cmpname = string_nextinlist(&namelist, &cmp_sep, NULL, 0)))
     {
     uschar * an = altnames;
-    while (certname = string_nextinlist(&an, &alt_sep, NULL, 0))
+    while ((certname = string_nextinlist(&an, &alt_sep, NULL, 0)))
       if (is_name_match(cmpname, certname))
     return TRUE;
     }
@@ -319,7 +319,7 @@ else if ((subjdn = tls_cert_subject(cert, NULL)))
   while (cmpname = string_nextinlist(&namelist, &cmp_sep, NULL, 0))
     {
     uschar * sn = subjdn;
-    while (certname = string_nextinlist(&sn, &sn_sep, NULL, 0))
+    while ((certname = string_nextinlist(&sn, &sn_sep, NULL, 0)))
       if (  *certname++ == 'C'
      && *certname++ == 'N'
      && *certname++ == '='
diff --git a/src/src/tod.c b/src/src/tod.c
index 9aa845c..427227c 100644
--- a/src/src/tod.c
+++ b/src/src/tod.c
@@ -59,7 +59,8 @@ if (type == tod_epoch_l)
   {
   struct timeval tv;
   gettimeofday(&tv, NULL);
-  (void) sprintf(CS timebuf, "%ld%06ld", tv.tv_sec, tv.tv_usec );  /* Unix epoch/usec format */
+  /* Unix epoch/usec format */
+  (void) sprintf(CS timebuf, "%ld%06ld", tv.tv_sec, (long) tv.tv_usec );
   return timebuf;
   }