]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
Remove tautological #if DEBUG.
authordholland <dholland@NetBSD.org>
Sat, 29 Mar 2014 21:24:56 +0000 (21:24 +0000)
committerdholland <dholland@NetBSD.org>
Sat, 29 Mar 2014 21:24:56 +0000 (21:24 +0000)
hunt/huntd/pathname.c

index 4bb94034949ac7286567c3cbe4d93bd922b79d61..c51c9b65d5a4a00aff517718bc9e7d3f24cbbcf7 100644 (file)
@@ -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