freebsd-ports/net/ntalk/files/patch-ntalk.cpp
Christian Weisgerber dfa31f08f4 * Update master site and home page.
* Honor CXX/CXXFLAGS.
* Fix C++ for GCC3.

Partly from discussion with and

PR:		44404
Submitted by:	Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
Approved by:	maintainer
2002-10-23 21:00:22 +00:00

23 lines
455 B
C++

$FreeBSD$
--- ntalk.cpp.orig Wed Oct 23 17:27:37 2002
+++ ntalk.cpp Wed Oct 23 17:31:54 2002
@@ -44,6 +44,8 @@
#define WHOIS "10"
#define SRVMESSAGE "11"
+using namespace std;
+
struct color {
int you;
@@ -341,7 +343,7 @@
a = count(msg.begin(), msg.end(), ';');
for(x = 0; x < a; x++)
{
- msg.replace(msg.find(';'), 1, '\n');
+ msg.replace(msg.find(';'), 1, "\n");
}
mvwprintw(user_w, 0, 0, "%s", msg.c_str());