Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!ncar!ames!elroy!mahendo!wlbr!sms From: sms@etn-wlv.eaton.com (Steven M. Schultz) Newsgroups: comp.bugs.2bsd Subject: missing NOSCCS in sendmail.h Message-ID: <30372@wlbr.EATON.COM> Date: 8 May 89 16:14:13 GMT Sender: news@wlbr.EATON.COM Reply-To: sms@etn-wlv.eaton.com (Steven M. Schultz) Organization: Contel Federal Systems IMSD Lines: 36 Subject: missing NOSCCS in sendmail.h Index: usr.lib/sendmail/src/sendmail.h 2.10BSD Description: A '!defined(NOSCCS)' in sendmail.h was overlooked when NOSCCS was added to all the other files in sendmail/src. This wastes approx 36 bytes of D space. Repeat-By: By observation. Fix: Apply the patch below. *** sendmail.h.old Tue May 2 22:24:22 1989 --- sendmail.h Tue May 2 22:25:05 1989 *************** *** 18,24 **** # ifdef _DEFINE # define EXTERN ! # ifndef lint static char SmailSccsId[] = "@(#)sendmail.h 5.8 1/10/86"; # endif lint # else _DEFINE --- 18,24 ---- # ifdef _DEFINE # define EXTERN ! # if !defined(lint) && !defined(NOSCCS) static char SmailSccsId[] = "@(#)sendmail.h 5.8 1/10/86"; # endif lint # else _DEFINE =========================================================================