diff options
author | dinoex <dinoex@FreeBSD.org> | 2004-05-12 04:27:58 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2004-05-12 04:27:58 +0000 |
commit | 5eaecb6ea3e20656e7169075cfcad4e428214482 (patch) | |
tree | 872ec05321e33e0cede6c117abedf4413eabdb8d /net | |
parent | d41370def70116e731eb135e3a0f96bad16deda3 (diff) | |
download | FreeBSD-ports-5eaecb6ea3e20656e7169075cfcad4e428214482.zip FreeBSD-ports-5eaecb6ea3e20656e7169075cfcad4e428214482.tar.gz |
- The patch removes extra translation from process message.
If configuration parameter Translation isn't 'none' then when you
receive some packets their content is translated twise (from some
charset to another one) and gets unreadable.
PR: 66352
Submitted by: Andrej N. Gritsenko
Diffstat (limited to 'net')
-rw-r--r-- | net/licq/Makefile | 2 | ||||
-rw-r--r-- | net/licq/files/patch-icqd-srv.cpp | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/net/licq/Makefile b/net/licq/Makefile index fb55879..90714e4 100644 --- a/net/licq/Makefile +++ b/net/licq/Makefile @@ -7,7 +7,7 @@ PORTNAME= base PORTVERSION= ${LICQ_VER} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net PKGNAMESUFFIX= ${SOCKS_SUFFIX}${PKGNAMESUFFIX2} diff --git a/net/licq/files/patch-icqd-srv.cpp b/net/licq/files/patch-icqd-srv.cpp new file mode 100644 index 0000000..6814106 --- /dev/null +++ b/net/licq/files/patch-icqd-srv.cpp @@ -0,0 +1,11 @@ +--- src/icqd-srv.cpp.orig Wed Jun 25 08:40:16 2003 ++++ src/icqd-srv.cpp Fri May 7 13:07:09 2004 +@@ -2145,7 +2145,7 @@ void CICQDaemon::ProcessMessageFam(CBuff + char *szMsg = gTranslator.RNToN(message); + delete [] message; + +- gTranslator.ServerToClient(szMsg); ++// gTranslator.ServerToClient(szMsg); + + bool bNewUser = false; + ICQUser *u = gUserManager.FetchUser(nUin, LOCK_W); |