Ignore:
Timestamp:
Nov 11, 2005 7:01:31 PM (18 years ago)
Author:
bennylp
Message:

First clean compile of pjsip

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/main/pjsip/src/pjsip/sip_uri.c

    • Property svn:keywords set to Id
    r3 r43  
    11/* $Id$ 
    2  * 
    32 */ 
    43#include <pjsip/sip_uri.h> 
    54#include <pjsip/sip_msg.h> 
    6 #include <pjsip/print.h> 
     5#include <pjsip/print_util.h> 
    76#include <pj/string.h> 
    87#include <pj/pool.h> 
     8#include <pj/assert.h> 
    99 
    1010#define IS_SIPS(url)    ((url)->vptr==&sips_url_vptr) 
     
    6969static const pj_str_t *pjsip_url_get_scheme(const pjsip_url *url) 
    7070{ 
    71     PJ_UNUSED_ARG(url) 
     71    PJ_UNUSED_ARG(url); 
    7272    return &sip_str; 
    7373} 
     
    7575static const pj_str_t *pjsips_url_get_scheme(const pjsip_url *url) 
    7676{ 
    77     PJ_UNUSED_ARG(url) 
     77    PJ_UNUSED_ARG(url); 
    7878    return &sips_str; 
    7979} 
     
    254254    } 
    255255 
    256     if (strcmp(str_url1, str_url2)) { 
     256    if (pj_native_strcmp(str_url1, str_url2)) { 
    257257        /* Not equal */ 
    258258        return -1; 
Note: See TracChangeset for help on using the changeset viewer.