From owner-freebsd-ports Thu Feb 3 6:18:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.surf1.de (mail.Surf1.de [194.25.165.21]) by builder.freebsd.org (Postfix) with ESMTP id 2BB11432A for ; Thu, 3 Feb 2000 06:18:02 -0800 (PST) Received: from cichlids.com (pC19F5498.dip0.t-ipconnect.de [193.159.84.152]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id PAA12356 for ; Thu, 3 Feb 2000 15:17:21 +0100 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by cichlids.com (Postfix) with ESMTP id 662E5AB98 for ; Thu, 3 Feb 2000 15:18:10 +0100 (CET) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id PAA43204 for ports@freebsd.org; Thu, 3 Feb 2000 15:18:38 +0100 (CET) (envelope-from alex) Date: Thu, 3 Feb 2000 15:18:38 +0100 From: Alexander Langer To: ports@freebsd.org Subject: fix for mail/mmr for current (bentofied) Message-ID: <20000203151838.A43200@cichlids.cichlids.com> Mail-Followup-To: ports@freebsd.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="YiEDa0DAkWCtVeE4" X-Mailer: Mutt 1.0i X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --YiEDa0DAkWCtVeE4 Content-Type: text/plain; charset=us-ascii Use this additional patch. -- I doubt, therefore I might be. --YiEDa0DAkWCtVeE4 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-ae --- mailmsg.cc.old Thu Feb 3 15:15:26 2000 +++ mailmsg.cc Thu Feb 3 15:16:01 2000 @@ -190,7 +190,7 @@ continue; } schar = - ((*status == ' ') ? "R" : status); + ((*status == ' ') ? (char *) "R" : status); *sptr = *schar; NewField("Status", schar); status_written = 1; @@ -208,7 +208,7 @@ char *schar; sptr = new char[strlen("Status: ")+2+1]; strcpy(sptr, "Status: "); - schar = ((*status == ' ') ? "R" : status); + schar = ((*status == ' ') ? (char *) "R" : status); strcat(sptr, schar); strcat(sptr, "\n"); QueueRing(ringbuf, sptr, strlen(sptr)); delete[] sptr; --YiEDa0DAkWCtVeE4-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message