Changeset 2994


Ignore:
Timestamp:
Nov 9, 2009 4:34:50 AM (14 years ago)
Author:
bennylp
Message:

More #957 (TLS): updated pj_perror() with the new PJ_PERROR() API

File:
1 edited

Legend:

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

    r2990 r2994  
    10901090 
    10911091                    if (status != PJ_SUCCESS && status != PJ_EPENDING) { 
    1092                         pj_perror(1, ssock->pool->obj_name, status,  
    1093                                   "Failed to flush delayed send", 0); 
     1092                        PJ_PERROR(1,(ssock->pool->obj_name, status,  
     1093                                     "Failed to flush delayed send")); 
    10941094                        goto on_error; 
    10951095                    } 
    10961096                } else if (status != PJ_EPENDING) { 
    1097                     pj_perror(1, ssock->pool->obj_name, status,  
    1098                               "Renegotiation failed", 0); 
     1097                    PJ_PERROR(1,(ssock->pool->obj_name, status,  
     1098                                 "Renegotiation failed")); 
    10991099                    goto on_error; 
    11001100                } 
Note: See TracChangeset for help on using the changeset viewer.