Changeset 80acb6d for lib/http_client.c


Ignore:
Timestamp:
2011-11-14T10:43:03Z (13 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
5dd725d
Parents:
03a8f8e
Message:

GnuTLS now also needs ssl_pending() implemented. Bug #860.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/http_client.c

    r03a8f8e r80acb6d  
    240240                                 http_incoming_data, req );
    241241       
    242         return FALSE;
     242        if( ssl_pending( req->ssl ) )
     243                return http_incoming_data( data, source, cond );
     244        else
     245                return FALSE;
    243246
    244247got_reply:
Note: See TracChangeset for help on using the changeset viewer.