[net.notes] Bug in access.c

salkind (01/12/83)

#N:cmcl2:12700003:000:357
cmcl2!salkind    Jan 11 04:00:00 1983

Notes core dumps when you try to modify an invalid entry.  This occurs
on the director's page.

The fix is simple; there is a missing break statement.  Add it right
around line 230:

		if (which > items || c < '0' || c > '9')/* check its validity */
		{
		    at (-2, 1);
		    printf ("Bad entry");
		    break;
		}
		which--;				/* adjust to zero base */