From: mdw Date: Sun, 13 Jan 2002 17:28:29 +0000 (+0000) Subject: Don't turn tracing on if tracing is turned off (!). X-Git-Tag: 1.0.0pre3~12 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/tripe/commitdiff_plain/d360f042becf2ccaf3d242f793ae88df778207b0 Don't turn tracing on if tracing is turned off (!). --- 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;