X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/93095cbe99154752c92c1d112cac139852b715a5..b6609cafae8188e083ab2ff4aac3b40651278e8f:/io.c diff --git a/io.c b/io.c index 925b13ed..ba969067 100644 --- a/io.c +++ b/io.c @@ -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);