summaryrefslogtreecommitdiffstats
path: root/hunt
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2014-03-29 21:24:56 +0000
committerdholland <dholland@NetBSD.org>2014-03-29 21:24:56 +0000
commitaefcd1020fe84ed9554a3ef982ab3e7a8197a7f0 (patch)
treee53d97b89c17aa9fb9450bc54f468df2ff6c1b7c /hunt
parentd6724a84e4ba41305086422afc071d9c8b92c09b (diff)
downloadbsdgames-darwin-aefcd1020fe84ed9554a3ef982ab3e7a8197a7f0.tar.gz
bsdgames-darwin-aefcd1020fe84ed9554a3ef982ab3e7a8197a7f0.tar.zst
bsdgames-darwin-aefcd1020fe84ed9554a3ef982ab3e7a8197a7f0.zip
Remove tautological #if DEBUG.
Diffstat (limited to 'hunt')
-rw-r--r--hunt/huntd/pathname.c17
1 files changed, 2 insertions, 15 deletions
diff --git a/hunt/huntd/pathname.c b/hunt/huntd/pathname.c
index 4bb94034..c51c9b65 100644
--- a/hunt/huntd/pathname.c
+++ b/hunt/huntd/pathname.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pathname.c,v 1.6 2014/03/29 21:24:26 dholland Exp $ */
+/* $NetBSD: pathname.c,v 1.7 2014/03/29 21:24:56 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: pathname.c,v 1.6 2014/03/29 21:24:26 dholland Exp $");
+__RCSID("$NetBSD: pathname.c,v 1.7 2014/03/29 21:24:56 dholland Exp $");
#endif /* not lint */
/*
@@ -45,22 +45,9 @@ __RCSID("$NetBSD: pathname.c,v 1.6 2014/03/29 21:24:26 dholland Exp $");
#include "hunt_common.h"
-#ifdef DEBUG
-
-#ifdef INTERNET
-u_short Test_port = TEST_PORT;
-#else
-char *Sock_name = "/tmp/hunt";
-char *Stat_name = "/tmp/hunt.stats";
-#endif
-
-#else
-
#ifdef INTERNET
u_short Test_port = TEST_PORT;
#else
char *Sock_name = "/tmp/hunt";
char *Stat_name = "/tmp/hunt.stats";
#endif
-
-#endif