﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
66	SVN rev 326: tracing still not dynamically controllable via the trace.exe utility	erdmann	Valery V. Sedletski	"File ""ifslog.c"", routine ""trace"":

you need to remove this block of code, otherwise invocation of ""message"" function will still not correctly deal with the trace flags:

{{{
294	static BOOL fInitted = FALSE;
295	static BOOL fTraceEnabled;
...
306	   if (! fInitted)
307	      {
308	      // check if tracing with TRACE_MAJOR is enabled
309	      fTraceEnabled = pGI->amecRAS[TRACE_MAJOR / 8] & (0x80 >> (TRACE_MAJOR % 8));
310	      }
311	   fInitted = TRUE;
312	
313	   if (! fTraceEnabled)
314	      return 0;
}}}

I don't know if you still need routine ""Trace"" (written with capital T).[[BR]]
Of course that will then miss the check for the trace flag. It would be best to get rid of it and use routines ""Message""/""message"" instead.
"	defect	closed	major	Future	IFS		medium	fixed		
