lots of silly indent fixes

This commit is contained in:
Denis Vlasenko
2006-10-03 19:56:34 +00:00
parent cf94446af7
commit 9275814a9e
12 changed files with 143 additions and 144 deletions

View File

@ -205,12 +205,12 @@ static void handlenetoutput(int len)
}
outbuf[j++] = *p;
if (*p == 0xff)
outbuf[j++] = 0xff;
outbuf[j++] = 0xff;
else if (*p == 0x0d)
outbuf[j++] = 0x00;
outbuf[j++] = 0x00;
}
if (j > 0 )
write(G.netfd, outbuf, j);
write(G.netfd, outbuf, j);
}