1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/mail/mmr/files/patch-ae
Christian Weisgerber 940d110922 C++ fixes for GCC3.
PR:		44460
Submitted by:	Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
2002-10-26 00:27:50 +00:00

41 lines
1.2 KiB
Plaintext

--- mailmsg.cpp.orig Tue May 30 01:59:06 2000
+++ mailmsg.cpp Fri Oct 25 13:54:39 2002
@@ -18,7 +18,7 @@
mailmsg::boundary[] = { "From", NULL };
/* This is called by a program to create a new list of messages */
-mailmsg:: mailmsg(IObottle *mailfile, void (*oncreate)(mailmsg *ptr) = NULL)
+mailmsg:: mailmsg(IObottle *mailfile, void (*oncreate)(mailmsg *ptr))
{
struct mbox_data *MBox;
@@ -173,7 +173,7 @@
/* Simple corruption check -- early end? */
if ( strncmp(newdata, "From ",
strlen("From ")) == 0 ) {
- cerr << "Warning: Corrupt mailfile?" << endl;
+ std::cerr << "Warning: Corrupt mailfile?" << std::cerr;
break;
}
@@ -338,7 +338,7 @@
/* See/Set the status of the message */
const char *
-mailmsg:: Status(int in_listing = 0)
+mailmsg:: Status(int in_listing)
{
/* Thread aware. :) */
if ( in_listing && (mbox->showthreads == HIDE_THREADS) ) {
@@ -664,8 +664,8 @@
/* Sanity check */
if ( i != (strlen(newsubject)-RElen) ) {
- cerr << "Warning: RE stripping: possible corruption!"
- << endl;
+ std::cerr << "Warning: RE stripping: possible corruption!"
+ << std::cerr;
}
/* Make it the new subject */