From: Alex Riesen Date: Thu, 28 Sep 2006 18:48:14 +0000 (+0200) Subject: fix daemon.c compilation for NO_IPV6=1 X-Git-Tag: v1.4.3-rc1~14 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/100690b6e8e9cc3cfe2c1d170192b5505d7a2ea8?hp=--cc fix daemon.c compilation for NO_IPV6=1 Signed-off-by: Alex Riesen Signed-off-by: Junio C Hamano --- 100690b6e8e9cc3cfe2c1d170192b5505d7a2ea8 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;