diff options
| author | Wayne Davison <wayned@samba.org> | 2004-07-20 16:57:18 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2004-07-20 16:57:18 +0000 |
| commit | cf338ab1be08818ce8f79af1c5501e13e4d199fb (patch) | |
| tree | 7fe16caefda7a9dbf2cfceaabf924609785573c3 /io.c | |
| parent | 66a9dc9639db9b86dd7218beda5ba1637651462d (diff) | |
| download | android_external_rsync-cf338ab1be08818ce8f79af1c5501e13e4d199fb.tar.gz android_external_rsync-cf338ab1be08818ce8f79af1c5501e13e4d199fb.tar.bz2 android_external_rsync-cf338ab1be08818ce8f79af1c5501e13e4d199fb.zip | |
Made write_sbuf() non-static.
Diffstat (limited to 'io.c')
| -rw-r--r-- | io.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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); |
