repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 7ed22d0b22dc1ed624c3931e1cff9e21f4156bd9:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 7ed22d0b22dc1ed624c3931e1cff9e21f4156bd9
Author: Alexander Barton 
Date:   Mon Jan 29 23:34:40 2018 +0100

    Fix compiler warning in ForwardLookup()

    When compiling without "working getaddrinfo()", the "af" parameter of
    ForwardLookup() is unused by that function. Mark it as such!

    This prevents the following compiler warning:

      resolve.c:235:56: warning: unused parameter ‘af’
        [-Wunused-parameter]

diff --git a/src/ngircd/resolve.c b/src/ngircd/resolve.c
index a8a163f0cf786c73ef34173ed3c3b90059e3fdd5..
index ..109d8b6c5491aaa69a3a0f8352b7fbdc3d872c8a 100644
--- a/src/ngircd/resolve.c
+++ b/src/ngircd/resolve.c
@@ -232,7 +232,11 @@ ReverseLookup(const ng_ipaddr_t *IpAddr, char *resbuf, size_t reslen)
  * @return true if lookup successful, false if domain name not found
  */
 static bool
+#ifdef HAVE_WORKING_GETADDRINFO
 ForwardLookup(const char *hostname, array *IpAddr, int af)
+#else
+ForwardLookup(const char *hostname, array *IpAddr, UNUSED int af)
+#endif
 {
 	ng_ipaddr_t addr;

-----END OF PAGE-----