Bug 55111
Summary: | Wrong displaying some users info, chat is not possible | ||
---|---|---|---|
Product: | [Retired] Red Hat Linux | Reporter: | Krzysztof Kosz <krzysztof.kosz> |
Component: | licq | Assignee: | Thomas Woerner <twoerner> |
Status: | CLOSED RAWHIDE | QA Contact: | David Lawrence <dkl> |
Severity: | medium | Docs Contact: | |
Priority: | high | ||
Version: | 7.1 | ||
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | i386 | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2003-01-16 15:30:47 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Krzysztof Kosz
2001-10-25 18:40:35 UTC
Proposed patch: --- ./icqd-udp.cpp Mon Feb 26 21:13:57 2001 +++ /icqd-udp.cpp Sun Oct 28 11:42:58 2001 @@ -1650,12 +1650,16 @@ delete buf; } +#if 0 + // !!! This causes problems for UINs that are > 0x07FFFFFF !!! // Check if uin is backwards, what the fuck is with icq99b? if (nUin > 0x07FFFFFF) { nUin = ((nUin & 0x000000FF) << 24) + ((nUin & 0x0000FF00) << 8) + ((nUin & 0x00FF0000) >> 8) + ((nUin & 0xFF000000) >> 24); } +#endif + // Swap high and low bytes for strange new icq99 if ((newCommand > 0x00FF) && !(newCommand & ICQ_CMDxSUB_FxMULTIREC)) { Proposed patch: --- ./icqd-udp.cpp Mon Feb 26 21:13:57 2001 +++ /icqd-udp.cpp Sun Oct 28 11:42:58 2001 @@ -1650,12 +1650,16 @@ delete buf; } +#if 0 + // !!! This causes problems for UINs that are > 0x07FFFFFF !!! // Check if uin is backwards, what the fuck is with icq99b? if (nUin > 0x07FFFFFF) { nUin = ((nUin & 0x000000FF) << 24) + ((nUin & 0x0000FF00) << 8) + ((nUin & 0x00FF0000) >> 8) + ((nUin & 0xFF000000) >> 24); } +#endif + // Swap high and low bytes for strange new icq99 if ((newCommand > 0x00FF) && !(newCommand & ICQ_CMDxSUB_FxMULTIREC)) { Fixed in rawhide in rpm licq-1.2.3-2 and later. |