summaryrefslogtreecommitdiffstats
path: root/usr.sbin/IPXrouted
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>2002-05-30 21:21:23 +0000
committerwollman <wollman@FreeBSD.org>2002-05-30 21:21:23 +0000
commit42a1641010c9c90ce3c04c0b26beb994fc17707f (patch)
treedc7caf3d27e44455560acab9da04e462106df36d /usr.sbin/IPXrouted
parent0e6b4b2400baba8b4439c902fff94d37adae6210 (diff)
downloadFreeBSD-src-42a1641010c9c90ce3c04c0b26beb994fc17707f.zip
FreeBSD-src-42a1641010c9c90ce3c04c0b26beb994fc17707f.tar.gz
Fix preprocessor directive syntax (text after #else).
This program is not likely to compile if DEBUG is ever defined.
Diffstat (limited to 'usr.sbin/IPXrouted')
-rw-r--r--usr.sbin/IPXrouted/trace.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.sbin/IPXrouted/trace.c b/usr.sbin/IPXrouted/trace.c
index b89d9f8..4ddb1da 100644
--- a/usr.sbin/IPXrouted/trace.c
+++ b/usr.sbin/IPXrouted/trace.c
@@ -34,12 +34,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)trace.c 8.1 (Berkeley) 6/5/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
/*
@@ -57,7 +59,7 @@ static char sccsid[] = "@(#)trace.c 8.1 (Berkeley) 6/5/93";
#ifdef DEBUG
FILE *ftrace = stdout;
int tracing = 1;
-#else DEBUG
+#else /* DEBUG */
FILE *ftrace = NULL;
int tracing = 0;
#endif
OpenPOWER on IntegriCloud