- Matching method propagation was wrong in new switch code.

- Some fixes for protocols that do not include matching send/read
  combo's. In particular, the max encryption level method ranged over
  the sends; now over all events. Maybe it can range over read events
  only?
This commit is contained in:
ccremers
2005-04-18 05:51:25 +00:00
parent 06a0a6c234
commit 9271cc7624
4 changed files with 62 additions and 25 deletions

View File

@@ -12,10 +12,10 @@
#include "timer.h"
extern System sys;
extern int mgu_match;
extern struct tacnode *spdltac;
extern Term TERM_Claim;
extern int mgu_match;
const char *progname = "scyther";
const char *releasetag = SVNVERSION;
@@ -219,6 +219,7 @@ switcher (const int process, const System sys, int index)
else
{
sys->match = integer_argument ();
mgu_match = sys->match;
return index;
}
}