]> granicus.if.org Git - pdns/commitdiff
more const; disable useless compiler warning
authorPeter van Dijk <peter.van.dijk@powerdns.com>
Tue, 1 Dec 2015 17:45:24 +0000 (18:45 +0100)
committerPeter van Dijk <peter.van.dijk@powerdns.com>
Tue, 1 Dec 2015 17:45:34 +0000 (18:45 +0100)
pdns/unix_utility.cc

index 24b3df0b4d463ff0a44ce02263ff4a70f0fc20a8..ed58314d05ea73dc16809cc35f1aa96eae662e7e 100644 (file)
@@ -80,8 +80,9 @@ int Utility::timed_connect( Utility::sock_t sock,
 
 void Utility::setBindAny(int af, sock_t sock)
 {
-  int one = 1;
+  const int one = 1;
 
+  (void) one; // avoids 'unused var' warning on systems that have none of the defines checked below
 #ifdef IP_FREEBIND
   if (setsockopt(sock, IPPROTO_IP, IP_FREEBIND, &one, sizeof(one)) < 0)
       theL()<<Logger::Warning<<"Warning: IP_FREEBIND setsockopt failed: "<<strerror(errno)<<endl;