Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/http/src/request.c

    rb7fd2a0 r1569a9b  
    9090}
    9191
    92 errno_t http_request_format(http_request_t *req, char **out_buf,
     92int http_request_format(http_request_t *req, char **out_buf,
    9393    size_t *out_buf_size)
    9494{
     
    141141}
    142142
    143 errno_t http_send_request(http_t *http, http_request_t *req)
     143int http_send_request(http_t *http, http_request_t *req)
    144144{
    145145        char *buf = NULL;
    146146        size_t buf_size = 0;
    147147       
    148         errno_t rc = http_request_format(req, &buf, &buf_size);
     148        int rc = http_request_format(req, &buf, &buf_size);
    149149        if (rc != EOK)
    150150                return rc;
Note: See TracChangeset for help on using the changeset viewer.