On Wed, 18 May 2005 13:34:39 -0700, Kees Cook wrote:
Ah-ha, yeah. I should use MESSAGE for that. It's only going to appear if peopl have already turned on trace/warn, or immediately following a FIXME that includes a path. I just want to use it for the readability of the structure.
Actually, MESSAGEs always appear. They're meant for end user critical information rather than developer info. If it's developer info either use TRACE/WARN or do:
if (TRACE_ON(crypt)) MESSAGE("foo\n");
but I think AJ prefers the former ;)
thanks -mike