Ignore:
Timestamp:
2006-02-12T07:26:20Z (18 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
f665dab
Parents:
a323a22 (diff), 58bc4e6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/jabber.c

    ra323a22 r5ebe625  
    413413                if (jd->die)
    414414                        signoff(GJ_GC(gjc));
    415         } else if (len < 0 || errno != EAGAIN) {
     415        } else if (len == 0 || (len < 0 && (!sockerr_again() || gjc->ssl))) {
    416416                STATE_EVT(JCONN_STATE_OFF)
    417417        }
     
    18561856                        xmlnode_insert_cdata(y, "away", -1);
    18571857                        y = xmlnode_insert_tag(x, "status");
    1858                         {
    1859                                 char *utf8 = str_to_utf8(message);
    1860                                 xmlnode_insert_cdata(y, utf8, -1);
    1861                                 g_free(utf8);
    1862                         }
     1858                        xmlnode_insert_cdata(y, message, -1);
    18631859                        gc->away = "";
    18641860                } else {
Note: See TracChangeset for help on using the changeset viewer.