Bugs that aren't our fault, but might bite people:

Modern: 

* You might experience crashes because the default executable stack
  size is too small. An 8 megabyte stack is more than ample. On unix, it
  can be raised with 'ulimit -s 8192'. On Windows, you must use the editbin
  progam that comes with MS development environments to raise the stack on a
  per-executable basis, via 'editbin /STACK:8388608 netmush.exe'


Ancient:
* Ralph Melton reports that compiling with gcc 2.5.8 under SunOS 4.1.1
  using -O optimization and forking dumps causes the dump process to
  crash. Removing -O fixes the problem; so might using a more recent gcc.
* Javelin has confirmed that compiling with gcc 2.7.2.3 under Linux 2.2.16
  using -O optimization causes ansi(rh,a) to crash. Removing -O fixes
  the problem; so might using a more recent gcc

