Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/gw.c

    r088b070 r951aefd  
    8787        gw->polling = FALSE;
    8888
    89         if (req->status_code != 200 || !req->reply_body) {
    90                 gw->callback(gw->md, -1, B_EV_IO_READ);
    91                 return;
    92         }
    93 
    9489        if (getenv("BITLBEE_DEBUG")) {
    9590                fprintf(stderr, "\n\x1b[90mHTTP:%s\n", req->reply_body);
    9691                fprintf(stderr, "\n\x1b[97m\n");
     92        }
     93
     94        if (req->status_code != 200) {
     95                gw->callback(gw->md, -1, B_EV_IO_READ);
     96                return;
    9797        }
    9898
     
    113113        if (req->body_size) {
    114114                g_byte_array_append(gw->in, (const guint8 *) req->reply_body, req->body_size);
    115 
    116                 if (!gw->callback(gw->md, -1, B_EV_IO_READ)) {
    117                         return;
    118                 }
     115                gw->callback(gw->md, -1, B_EV_IO_READ);
    119116        }
    120117
Note: See TracChangeset for help on using the changeset viewer.