tidying: coverity
authorJeremy Harris <jgh146exb@wizmail.org>
Mon, 1 May 2017 11:08:17 +0000 (12:08 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Mon, 1 May 2017 11:08:17 +0000 (12:08 +0100)
src/src/deliver.c
src/src/dkim_transport.c

index 56642c6aab1aa7ee199fb6f20f0a6589510b97b3..fe156c696d00f2524f2420d9603cbd929f697866 100644 (file)
@@ -4499,10 +4499,10 @@ for (delivery_count = 0; addr_remote; delivery_count++)
 
     /* Set a flag indicating whether there are further addresses that list
     the continued host. This tells the transport to leave the channel open,
-    but not to pass it to another delivery process. */
-    /*XXX really the flag should be settable even by an initial proces
-    (not continue_transport dependent).  Need to check that uses of it
-    are independent. */
+    but not to pass it to another delivery process. We'd like to do that
+    for non-continue_transport cases too but the knowlege of which host is
+    connected to is too hard to manage.  Perhaps we need a finer-grain
+    interface to the transport. */
 
     for (next = addr_remote; next && !continue_more; next = next->next)
       {
index a654c251661e298d8ccdc521f21f5aef7e39f078..882fc877296bb7b45eba57b431430f8a154ea0b8 100644 (file)
@@ -43,7 +43,7 @@ return TRUE;
 static BOOL
 dkt_send_file(int out_fd, int in_fd, off_t off, size_t size)
 {
-DEBUG(D_transport) debug_printf("send file fd=%d size=%l\n", out_fd, size - off);
+DEBUG(D_transport) debug_printf("send file fd=%d size=%u\n", out_fd, (unsigned)(size - off));
 
 /*XXX should implement timeout, like transport_write_block_fd() ? */
 
@@ -204,7 +204,7 @@ int dkim_fd;
 int save_errno = 0;
 BOOL rc;
 uschar * dkim_spool_name, * dkim_signature;
-int sread = 0, wwritten = 0, siglen, options;
+int sread = 0, wwritten = 0, siglen = 0, options;
 off_t k_file_size;
 const uschar * errstr;