summaryrefslogtreecommitdiffstats
path: root/hunt/huntd/answer.c
diff options
context:
space:
mode:
authormrg <mrg@NetBSD.org>2006-05-09 20:18:05 +0000
committermrg <mrg@NetBSD.org>2006-05-09 20:18:05 +0000
commit5b913d05d1629e2b06fd1a5e02bd884102cc8c48 (patch)
tree1c907c948c72ca6ab00c6bd287b54f2e6af9aba1 /hunt/huntd/answer.c
parentab5f63d11e6d35ff0b8e699368a024a0734660c4 (diff)
downloadbsdgames-darwin-5b913d05d1629e2b06fd1a5e02bd884102cc8c48.tar.gz
bsdgames-darwin-5b913d05d1629e2b06fd1a5e02bd884102cc8c48.zip
change (mostly) int to socklen_t. GCC 4 doesn't like that int and
socklen_t are different signness.
Diffstat (limited to 'hunt/huntd/answer.c')
-rw-r--r--hunt/huntd/answer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hunt/huntd/answer.c b/hunt/huntd/answer.c
index 20371629..0759f750 100644
--- a/hunt/huntd/answer.c
+++ b/hunt/huntd/answer.c
@@ -1,4 +1,4 @@
-/* $NetBSD: answer.c,v 1.7 2004/11/05 21:30:32 dsl Exp $ */
+/* $NetBSD: answer.c,v 1.8 2006/05/09 20:18:06 mrg Exp $ */
/*
* Copyright (c) 1983-2003, Regents of the University of California.
* All rights reserved.
@@ -32,7 +32,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: answer.c,v 1.7 2004/11/05 21:30:32 dsl Exp $");
+__RCSID("$NetBSD: answer.c,v 1.8 2006/05/09 20:18:06 mrg Exp $");
#endif /* not lint */
# include <ctype.h>
@@ -55,7 +55,7 @@ answer()
static char name[NAMELEN];
static char team;
static int enter_status;
- static int socklen;
+ static socklen_t socklen;
static u_long machine;
static u_int32_t uid;
static SOCKET sockstruct;