From 100690b6e8e9cc3cfe2c1d170192b5505d7a2ea8 Mon Sep 17 00:00:00 2001 From: Alex Riesen Date: Thu, 28 Sep 2006 20:48:14 +0200 Subject: [PATCH] fix daemon.c compilation for NO_IPV6=1 Signed-off-by: Alex Riesen Signed-off-by: Junio C Hamano --- daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon.c b/daemon.c index fc3951cf75..ad8492873e 100644 --- a/daemon.c +++ b/daemon.c @@ -834,7 +834,7 @@ static int socksetup(char *listen_addr, int listen_port, int **socklist_p) #else /* NO_IPV6 */ -static int socksetup(char *lisen_addr, int listen_port, int **socklist_p) +static int socksetup(char *listen_addr, int listen_port, int **socklist_p) { struct sockaddr_in sin; int sockfd; -- 2.11.4.GIT