Path: utzoo!mnetor!uunet!lll-winken!lll-lcc!mordor!sri-spam!sri-unix!quintus!ok From: ok@quintus.UUCP (Richard A. O'Keefe) Newsgroups: comp.sources.bugs Subject: Re: patch to check for page breaks and use with error (BSD) Message-ID: <699@cresswell.quintus.UUCP> Date: 26 Feb 88 13:28:56 GMT References: <399@ole.UUCP> Organization: Quintus Computer Systems, Mountain View, CA Lines: 10 Summary: another patch In the function error() in main.c, change exit(errors); to exit(errors == 0 ? 0 : 1); This is because 256 errors looks exactly like 0 errors in UNIX systems... In the function main() in main.c, change return errors; to exit(errors == 0 ? 0 : 1); This is for the same reason.