compiler quietening
authorJeremy Harris <jgh146exb@wizmail.org>
Sun, 9 Apr 2017 14:42:49 +0000 (15:42 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Tue, 11 Apr 2017 09:41:47 +0000 (10:41 +0100)
src/src/pdkim/pdkim.c
src/src/tls-openssl.c
src/src/transport.c
src/src/verify.c

index 5fc6045d0b49995a74bfffe62ca1bad58aecdcc4..e4384d7f73bb3fb12cfcf4d29495cb38cca7bf9b 100644 (file)
@@ -1596,7 +1596,6 @@ while (sig)
   else
     {
     ev_ctx vctx;
-    pdkim_pubkey * p;
 
     /* Make sure we have all required signature tags */
     if (!(  sig->domain        && *sig->domain
index 8018d220bb8d116f18fd53238e3552d38404afeb..ead41c037c8e50c1f2ee114ef02e28bcf08c690b 100644 (file)
@@ -727,7 +727,7 @@ if (Ustrcmp(exp_curve, "auto") == 0)
 #if OPENSSL_VERSION_NUMBER < 0x10002000L
   DEBUG(D_tls) debug_printf(
     "ECDH OpenSSL < 1.0.2: temp key parameter settings: overriding \"auto\" with \"prime256v1\"\n");
-  exp_curve = "prime256v1";
+  exp_curve = US"prime256v1";
 #else
 # if defined SSL_CTRL_SET_ECDH_AUTO
   DEBUG(D_tls) debug_printf(
index ee51206638bfb27360e722d575596a6e6c91d585..594e02cdee2f4ec9aed6c883c7bbb8e3fd615bde 100644 (file)
@@ -1934,8 +1934,6 @@ void
 transport_do_pass_socket(const uschar *transport_name, const uschar *hostname,
   const uschar *hostaddress, uschar *id, int socket_fd)
 {
-pid_t pid;
-int status;
 int i = 20;
 const uschar **argv;
 
index b28d15a71e164caab892313000c3be2b8236f80c..794c76c4eb37a2517cdeb138fd0ba6b4ec789225 100644 (file)
@@ -1221,6 +1221,7 @@ void
 cutthrough_data_puts(uschar * cp, int n)
 {
 if (cutthrough.delivery) (void) cutthrough_puts(cp, n);
+return;
 }
 
 
@@ -1353,7 +1354,7 @@ return TRUE;
 
 
 static void
-close_cutthrough_connection(const char * why)
+close_cutthrough_connection(const uschar * why)
 {
 int fd = cutthrough.fd;
 if(fd >= 0)
@@ -1428,7 +1429,7 @@ for (addr = &cutthrough.addr; addr; addr = addr->next)
     {
     case '2':
       delivery_log(LOG_MAIN, addr, (int)'>', NULL);
-      close_cutthrough_connection("delivered");
+      close_cutthrough_connection(US"delivered");
       break;
 
     case '4':