Commit 93095cbe authored by Wayne Davison's avatar Wayne Davison

A very minor optimization was made to read_sbuf(), read_byte(),

write_sbuf(), and write_byte().
parent 399371e7
......@@ -761,14 +761,14 @@ void read_buf(int f,char *buf,size_t len)
void read_sbuf(int f,char *buf,size_t len)
{
read_buf(f,buf,len);
readfd(f, buf, len);
buf[len] = 0;
}
unsigned char read_byte(int f)
{
unsigned char c;
read_buf(f, (char *)&c, 1);
readfd(f, (char *)&c, 1);
return c;
}
......@@ -1037,13 +1037,13 @@ void write_buf(int f,char *buf,size_t len)
/** Write a string to the connection */
static void write_sbuf(int f,char *buf)
{
write_buf(f, buf, strlen(buf));
writefd(f, buf, strlen(buf));
}
void write_byte(int f,unsigned char c)
{
write_buf(f,(char *)&c,1);
writefd(f, (char *)&c, 1);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment