Ignore:
Timestamp:
Feb 23, 2007 1:07:54 AM (17 years ago)
Author:
bennylp
Message:

Ticket #121 and #122: Initial implementation of generic STUN transaction, with Binding request as an example

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/errno.c

    r974 r996  
    153153    pj_assert(buf && bufsize); 
    154154 
    155     if (statcode < PJ_ERRNO_START + PJ_ERRNO_SPACE_SIZE) { 
     155    if (statcode == PJ_SUCCESS) { 
     156        len = pj_ansi_snprintf( buf, bufsize, "Success"); 
     157 
     158    } else if (statcode < PJ_ERRNO_START + PJ_ERRNO_SPACE_SIZE) { 
    156159        len = pj_ansi_snprintf( buf, bufsize, "Unknown error %d", statcode); 
    157160 
Note: See TracChangeset for help on using the changeset viewer.