bruceb@amiga.UUCP (05/21/86)
"They didn't hire me to do QA for nothing."
Minor bug in cpri is that "cpri 5 0" is accepted without error.
cpri.c Minor bug fix.
-- what was: --
/* Validate with range check */ 
if (procnum > tt[0] || tt[procnum] == 0L) {
        WSTR("Invalid process number\n");
        exit(20);
}
-- should be: --
/* Validate with range check */ 
if (procnum > tt[0] || tt[procnum] == 0L || procnum == 0L) {
        WSTR("Invalid process number\n");
        exit(20);
}
--Bruce Barrett