Commit cf338ab1 authored by Wayne Davison's avatar Wayne Davison

Made write_sbuf() non-static.

parent 66a9dc96
......@@ -1035,12 +1035,11 @@ void write_buf(int f,char *buf,size_t len)
}
/** Write a string to the connection */
static void write_sbuf(int f,char *buf)
void write_sbuf(int f, char *buf)
{
writefd(f, buf, strlen(buf));
}
void write_byte(int f,unsigned char c)
{
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