Ignore:
Timestamp:
Jul 9, 2006 10:11:43 AM (18 years ago)
Author:
bennylp
Message:

Fix minor bug in displaying invalid message (previously the whole TCP packet was printed while it should only print the message chunk)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip/sip_endpoint.c

    r582 r596  
    718718        PJ_LOG(1, (THIS_FILE,  
    719719                  "Error processing packet from %s:%d: %s %s [code %d]:\n" 
    720                   "%s\n" 
     720                  "%.*s\n" 
    721721                  "-- end of packet.", 
    722722                  rdata->pkt_info.src_name,  
     
    725725                  info, 
    726726                  status, 
     727                  (int)rdata->msg_info.len,      
    727728                  rdata->msg_info.msg_buf)); 
    728729        return; 
Note: See TracChangeset for help on using the changeset viewer.