Chris Bannister wrote:
This still appears to be an issue in the following package:
cj@she:~$ dpkg --list | grep centericq
ii centericq 4.12.0-1 A text-mode multi-protocol instant
messenger
ii centericq-comm 4.12.0-1 A text-mode multi-protocol instant
messenger
I am unable to log in to MSN, getting only the "+ [msn] connecting to
the server " message then nothing else.
ICQ connects fine but MSN just hangs there.
This is a pretty much fresh install from the sarge net-isnt
Here is the patch I forgot :
--- centericq-4.10.0.orig/libmsn-0.1/msn/notificationserver.cpp
2004-07-19 21:07:20.000000000 +0200
+++ centericq-4.10.0/libmsn-0.1/msn/notificationserver.cpp 2004-07-19
21:10:20.000000000 +0200
@@ -375,7 +375,7 @@
{
assert(connectionStatus >= NS_CONNECTED);
std::ostringstream buf_;
- buf_ << "ADD " << trid++ << " " << "FL" << " " << buddyName << "
" << buddyName << groupID << "\r\n";
+ buf_ << "ADD " << trid++ << " " << "FL" << " " << buddyName << "
" << buddyName << " " << groupID << "\r\n";
write(buf_);
}
@@ -383,7 +383,7 @@
{
assert(connectionStatus >= NS_CONNECTED);
std::ostringstream buf_;
- buf_ << "REM " << trid++ << " " << "FL" << " " << buddyName <<
groupID << "\r\n";
+ buf_ << "REM " << trid++ << " " << "FL" << " " << buddyName << "
" << groupID << "\r\n";
write(buf_);
}
@@ -391,7 +391,7 @@
{
assert(connectionStatus >= NS_CONNECTED);
std::ostringstream buf_;
- buf_ << "ADG " << trid++ << encodeURL(groupName) << " " << 0 <<
"\r\n";
+ buf_ << "ADG " << trid++ << " " << encodeURL(groupName) << " "
<< 0 << "\r\n";
write(buf_);
}
@@ -399,7 +399,7 @@
{
assert(connectionStatus >= NS_CONNECTED);
std::ostringstream buf_;
- buf_ << "RMG " << trid++ << groupID << "\r\n";
+ buf_ << "RMG " << trid++ << " " << groupID << "\r\n";
write(buf_);
}
@@ -407,7 +407,7 @@
{
assert(connectionStatus >= NS_CONNECTED);
std::ostringstream buf_;
- buf_ << "REG " << trid++ << groupID << " " <<
encodeURL(newGroupName) << " " << 0 << "\r\n";
+ buf_ << "REG " << trid++ << " " << groupID << " " <<
encodeURL(newGroupName) << " " << 0 << "\r\n";
write(buf_);
}
--
Julien Lemoine / SpeedBlue
"Savoir que les choses sont sans espoir et cependant
tout faire pour les changer", Francis Scott Fitzgerald
--
To UNSUBSCRIBE, email to debian-bugs-dist-REQUEST@xxxxxxxxxxxxxxxx
with a subject of "unsubscribe". Trouble? Contact listmaster@xxxxxxxxxxxxxxxx
|