X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/1f75bb10660e4708c3b857bab6e220f46bb276b8..b6609cafae8188e083ab2ff4aac3b40651278e8f:/io.c diff --git a/io.c b/io.c index 909bc650..ba969067 100644 --- a/io.c +++ b/io.c @@ -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; } @@ -1035,15 +1035,14 @@ 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) { - 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); }