Eduardo Espejo <eduardo.espejo@xxxxxxxxx> writes: > Tested in 2.4 commit 3d4a3ffe64: > > daemon.c:636:24: error: use of undeclared identifier 'hostname' > hent = gethostbyname(hostname.buf); Thanks. It seems nobody actively interested in developing Git builds with NO_IPV6 these days? Does this help? daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon.c b/daemon.c index ac2bc85..d3d3e43 100644 --- a/daemon.c +++ b/daemon.c @@ -633,7 +633,7 @@ static void lookup_hostname(struct hostinfo *hi) char **ap; static char addrbuf[HOST_NAME_MAX + 1]; - hent = gethostbyname(hostname.buf); + hent = gethostbyname(hi->hostname.buf); if (hent) { ap = hent->h_addr_list; memset(&sa, 0, sizeof sa); -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html