From d360f042becf2ccaf3d242f793ae88df778207b0 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 13 Jan 2002 17:28:29 +0000 Subject: [PATCH] Don't turn tracing on if tracing is turned off (!). Organization: Straylight/Edgeware From: mdw --- tripe.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tripe.c b/tripe.c index f505f3c1..33a97b7c 100644 --- a/tripe.c +++ b/tripe.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: tripe.c,v 1.7 2002/01/13 17:14:05 mdw Exp $ + * $Id: tripe.c,v 1.8 2002/01/13 17:28:29 mdw Exp $ * * Main program * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: tripe.c,v $ + * Revision 1.8 2002/01/13 17:28:29 mdw + * Don't turn tracing on if tracing is turned off (!). + * * Revision 1.7 2002/01/13 17:14:05 mdw * Don't include the tracing option in the help if not compiled in. * @@ -150,7 +153,7 @@ int main(int argc, char *argv[]) #define f_daemon 2u ego(argv[0]); - trace_on(stderr, 0); + T( trace_on(stderr, 0); ) if ((p = getenv("TRIPEDIR")) != 0) dir = p; -- [mdw]