Files
bitchx/source
Kevin Easton 208fddb9f5 Simplify dcc_send_socketread()
There should be no change in behaviour.  Replaces a code block of the form:

if (a || b)
{
    if (c && a)
    {
        /* one */
    }
    else if (b)
    {
        /* two */
    }
}

with the simpler equivalent:

if (c && a)
{
    /* one */
}
else if (b)
{
    /* two */
}
2018-04-12 00:20:13 +10:00
..
2018-04-12 00:20:13 +10:00
2017-06-28 00:03:09 +10:00
2017-05-10 23:41:32 +10:00
2017-07-11 19:01:09 +10:00
2017-11-27 23:15:06 +11:00
2017-11-24 17:29:51 +11:00