Changeset 4591

Show
Ignore:
Timestamp:
09/03/06 06:52:19 (2 years ago)
Author:
erijo
Message:

Applied patch from root_42 (#1387) to fix some compiler warnings.

Location:
trunk/licq
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/licq/include/licq_message.h

    r4526 r4591  
    5555   direction Direction()  {  return m_eDir; } 
    5656   CICQColor *Color() { return &m_sColor; } 
    57    int ConvoId() { return m_nConvoId; } 
     57   unsigned long ConvoId() { return m_nConvoId; } 
    5858    
    5959   bool Pending() { return m_bPending; } 
  • trunk/licq/src/icqd-srv.cpp

    r4573 r4591  
    22882288  case ICQ_SNACxSRV_ACKxIMxICQ: 
    22892289    { 
    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); 
    22932293 
    22942294      CSrvPacketTcp* p; 
  • trunk/licq/src/user.cpp

    r4554 r4591  
    27932793  unsigned long i = 0, j, nField = 0, nPos = 0; 
    27942794  char szTemp[128]; 
    2795   const char *sz; 
    27962795 
    27972796  // Our secure string for escaping stuff 
     
    28552854      } 
    28562855 
     2856      const char *sz = 0; 
    28572857      switch(_szFormat[i]) 
    28582858      { 
     
    30273027      } 
    30283028 
     3029      if (!sz) 
     3030        continue; 
     3031 
    30293032      // If we need to be secure, then quote the % string 
    30303033      if (bSecure)