missing NOSCCS in sendmail.h

Steven M. Schultz sms at etn-wlv.eaton.com
Tue May 9 02:14:13 AEST 1989


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

=========================================================================



More information about the Comp.bugs.2bsd mailing list