mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-10 05:02:50 +01:00
Reformat the DNS plugin a bit while we're at it
This commit is contained in:
parent
d559401c50
commit
92cb1dc12c
@ -67,9 +67,11 @@ waitline (void *source, char *buf, int bufsize)
|
||||
{
|
||||
len = 1;
|
||||
/* we can't read() here, due to glib's giowin32 */
|
||||
if(ph->xchat_read_fd(ph, source, buf + i, &len) != 0)
|
||||
if (ph->xchat_read_fd (ph, source, buf + i, &len) != 0)
|
||||
{
|
||||
return -1;
|
||||
if(buf[i] == '\n' || bufsize == i + 1)
|
||||
}
|
||||
if (buf[i] == '\n' || bufsize == i + 1)
|
||||
{
|
||||
buf[i] = 0;
|
||||
return i;
|
||||
|
Loading…
Reference in New Issue
Block a user