Module Name:    src
Committed By:   dholland
Date:           Sat Mar 29 20:35:30 UTC 2014

Modified Files:
        src/games/hunt/huntd: Makefile driver.c
Removed Files:
        src/games/hunt/huntd: faketalk.c

Log Message:
remove stubbed-out function


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/games/hunt/huntd/Makefile
cvs rdiff -u -r1.26 -r1.27 src/games/hunt/huntd/driver.c
cvs rdiff -u -r1.24 -r0 src/games/hunt/huntd/faketalk.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/hunt/huntd/Makefile
diff -u src/games/hunt/huntd/Makefile:1.2 src/games/hunt/huntd/Makefile:1.3
--- src/games/hunt/huntd/Makefile:1.2	Sat Mar 29 20:32:04 2014
+++ src/games/hunt/huntd/Makefile	Sat Mar 29 20:35:30 2014
@@ -1,8 +1,8 @@
-#	$NetBSD: Makefile,v 1.2 2014/03/29 20:32:04 dholland Exp $
+#	$NetBSD: Makefile,v 1.3 2014/03/29 20:35:30 dholland Exp $
 
 PROG=	huntd
 SRCS=	answer.c draw.c driver.c execute.c expl.c \
-	extern.c faketalk.c makemaze.c pathname.c shots.c terminal.c
+	extern.c makemaze.c pathname.c shots.c terminal.c
 MAN=	huntd.6
 
 .include <bsd.prog.mk>

Index: src/games/hunt/huntd/driver.c
diff -u src/games/hunt/huntd/driver.c:1.26 src/games/hunt/huntd/driver.c:1.27
--- src/games/hunt/huntd/driver.c:1.26	Sat Mar 29 20:12:12 2014
+++ src/games/hunt/huntd/driver.c	Sat Mar 29 20:35:30 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: driver.c,v 1.26 2014/03/29 20:12:12 dholland Exp $	*/
+/*	$NetBSD: driver.c,v 1.27 2014/03/29 20:35:30 dholland 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: driver.c,v 1.26 2014/03/29 20:12:12 dholland Exp $");
+__RCSID("$NetBSD: driver.c,v 1.27 2014/03/29 20:35:30 dholland Exp $");
 #endif /* not lint */
 
 #include <sys/ioctl.h>
@@ -183,10 +183,9 @@ again:
 		}
 		if (fdset[0].revents & POLLIN)
 			if (answer()) {
-#ifdef INTERNET
-				if (first && standard_port)
-					faketalk();
-#endif
+				if (first) {
+					/* announce start of game? */
+				}
 				first = false;
 			}
 		if (fdset[1].revents & POLLIN)

Reply via email to