Changeset 4591
- Timestamp:
- 09/03/06 06:52:19 (2 years ago)
- Location:
- trunk/licq
- Files:
-
- 3 modified
-
include/licq_message.h (modified) (1 diff)
-
src/icqd-srv.cpp (modified) (1 diff)
-
src/user.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/licq/include/licq_message.h
r4526 r4591 55 55 direction Direction() { return m_eDir; } 56 56 CICQColor *Color() { return &m_sColor; } 57 intConvoId() { return m_nConvoId; }57 unsigned long ConvoId() { return m_nConvoId; } 58 58 59 59 bool Pending() { return m_bPending; } -
trunk/licq/src/icqd-srv.cpp
r4573 r4591 2288 2288 case ICQ_SNACxSRV_ACKxIMxICQ: 2289 2289 { 2290 ICQOwner *o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R);2291 unsigned long nListTime = o->GetSSTime();2292 gUserManager.DropOwner(LICQ_PPID);2290 // ICQOwner *o = gUserManager.FetchOwner(LICQ_PPID, LOCK_R); 2291 // unsigned long nListTime = o->GetSSTime(); 2292 // gUserManager.DropOwner(LICQ_PPID); 2293 2293 2294 2294 CSrvPacketTcp* p; -
trunk/licq/src/user.cpp
r4554 r4591 2793 2793 unsigned long i = 0, j, nField = 0, nPos = 0; 2794 2794 char szTemp[128]; 2795 const char *sz;2796 2795 2797 2796 // Our secure string for escaping stuff … … 2855 2854 } 2856 2855 2856 const char *sz = 0; 2857 2857 switch(_szFormat[i]) 2858 2858 { … … 3027 3027 } 3028 3028 3029 if (!sz) 3030 continue; 3031 3029 3032 // If we need to be secure, then quote the % string 3030 3033 if (bSecure)
