Path: utzoo!mnetor!uunet!husc6!cmcl2!nrl-cmf!ames!mailrus!umix!honey From: honey@umix.cc.umich.edu (Peter Honeyman) Newsgroups: comp.mail.uucp Subject: Re: How to call a system to send mail only and not news? Message-ID: <3684@umix.cc.umich.edu> Date: 6 Feb 88 22:38:53 GMT References: <3674@umix.cc.umich.edu> <1374@mtunx.ATT.COM> Reply-To: honey@citi.umich.edu (Peter Honeyman) Organization: Center for Information Technology Integration, Univ of Michigan Lines: 16 jonathon, it was also the EQUALS and EQUALSN macros that failed on the 3b1. they used to say #define EQUALS(a,b) a && b && strcmp(a, b) == 0 (with a little embellishment, i.e., a profusion of parentheses.) the 3b1, er 7300, er now what was it called ... oh yes, the safari-4 (this was ca. '84) would merrily generate bad code for this, dumping core when reached. changing the macro to #define EQUALS(a,b) a != 0 && b != 0 && strcmp(a, b) == 0 cured the disease. same with EQUALSN, m.m. peter