Changeset 651

Show
Ignore:
Timestamp:
12/12/05 22:45:36 (3 years ago)
Author:
smoku
Message:

normalize resource concat fix

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/jid.c

    r630 r651  
    250250        else{ 
    251251                if (node[0]) 
    252                         return g_strconcat(node,"@",domain,'/',resource,NULL); 
     252                        return g_strconcat(node,"@",domain,"/",resource,NULL); 
    253253                else 
    254                         return g_strconcat(domain,'/',resource,NULL); 
    255         } 
    256 } 
     254                        return g_strconcat(domain,"/",resource,NULL); 
     255        } 
     256}