Show
Ignore:
Timestamp:
06/14/08 17:36:23 (7 months ago)
Author:
flynd
Message:

Changed some calls to not use uin functions.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/licq/src/fifo.cpp

    r6271 r6306  
    305305        if( strcasecmp(s, pUser->GetAlias()) == 0) 
    306306        { 
    307           _szId = (char *) malloc(26); 
    308           if( _szId ) 
    309           {  
    310             sprintf(_szId, "%ld", pUser->Uin() ); 
    311             ret = true; 
    312           } 
     307        _szId = strdup(pUser->IdString()); 
     308        ret = true; 
    313309          FOR_EACH_PROTO_USER_BREAK 
    314310        } 
     
    593589    else 
    594590    { 
    595       unsigned long nUin = u->Uin(); 
    596591      gUserManager.DropUser(u); 
    597       d->icqRequestMetaInfo(nUin); 
     592      d->icqRequestMetaInfo(szId); 
    598593      ret = 0; 
    599594    }