﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
74	Cleanup DOROT13 macro in MLE.c	Gregg Young	Gregg Young	"mle.c(299:12) : informational EDC0424: The condition is always true.
mle.c(299:12) : informational EDC0425: The condition is always false.

      *p = DOROT13(*p); // fixme condition both true and false?

this a case of silly code that has been there forever.  The fixme is mine,
added as a note to remove the silliness someday.  Mark's code near line 37
reads

#define FAKEROT 1
#define DOROT13(c) ((FAKEROT==0)?(c):(FAKEROT==1)?etc...

This should be rewritten

#define FAKEROT 1       // Set to 1 or 0
!if FAKEROT == 0
#define DOROT13(c) alogo1...
#else
#define DOROT13(c) alogo2...
#endif

"	task	closed	minor	Release_3.5.9	fm/2 base	3.05	fixed		
