Xref: utzoo comp.sources.bugs:2928 comp.mail.mush:1203 Path: utzoo!utgpu!news-server.csri.toronto.edu!torsqnt!hybrid!robohack!eci386!ecicrl!ferret.ocunix.on.ca!clewis From: clewis@ferret.ocunix.on.ca (Chris Lewis) Newsgroups: comp.sources.bugs,comp.mail.mush Subject: Cute bug in Mush's config.h-dist Message-ID: <2068@ecicrl.ocunix.on.ca> Date: 24 May 91 07:46:49 GMT Sender: clewis@ferret.ocunix.on.ca Followup-To: comp.sources.bugs Organization: Elegant Communications Inc., Ottawa, Canada Lines: 14 In config.h-dist, there is the following code: | /* If your mailer does not understand commas between addresses, you should | * define NO_COMMAS. This includes pre-3.0 smail and default MTAs used on | * xenix, and sys-v systems. | * This does NOT apply to MMDF or sendmail, in most cases. | */ | #ifdef SUN_4_1 /* SunOS 4.1 has warped sendmail.cf */ | #define NO_COMMAS /**/ | #endif /* SUN_4_1 Note the missing "*/" on the last line. I put a "#define NO_COMMAS" immediately after it, and the define got eaten by cpp. Put a */ in and all's well.