Commit 0f3203c3 authored by Andrew Tridgell's avatar Andrew Tridgell

fixed some logcode warnings

parent a2edb26c
...@@ -429,7 +429,7 @@ void io_flush(void) ...@@ -429,7 +429,7 @@ void io_flush(void)
if (!io_buffer_count || no_flush) return; if (!io_buffer_count || no_flush) return;
if (io_multiplexing_out) { if (io_multiplexing_out) {
mplex_write(fd, 0, io_buffer, io_buffer_count); mplex_write(fd, FNONE, io_buffer, io_buffer_count);
} else { } else {
writefd_unbuffered(fd, io_buffer, io_buffer_count); writefd_unbuffered(fd, io_buffer, io_buffer_count);
} }
......
...@@ -194,7 +194,7 @@ void rflush(enum logcode code) ...@@ -194,7 +194,7 @@ void rflush(enum logcode code)
/* a generic logging routine for send/recv, with parameter /* a generic logging routine for send/recv, with parameter
substitiution */ substitiution */
static void log_formatted(int fd, static void log_formatted(enum logcode code,
char *format, char *op, struct file_struct *file, char *format, char *op, struct file_struct *file,
struct stats *initial_stats) struct stats *initial_stats)
{ {
...@@ -284,7 +284,7 @@ static void log_formatted(int fd, ...@@ -284,7 +284,7 @@ static void log_formatted(int fd,
s = p+l; s = p+l;
} }
rprintf(fd,"%s\n", buf); rprintf(code,"%s\n", buf);
} }
/* log the outgoing transfer of a file */ /* log the outgoing transfer of a file */
......
...@@ -84,7 +84,7 @@ int list_only = 0; ...@@ -84,7 +84,7 @@ int list_only = 0;
struct in_addr socket_address = {INADDR_ANY}; struct in_addr socket_address = {INADDR_ANY};
void usage(int F) void usage(enum logcode F)
{ {
rprintf(F,"rsync version %s Copyright Andrew Tridgell and Paul Mackerras\n\n", rprintf(F,"rsync version %s Copyright Andrew Tridgell and Paul Mackerras\n\n",
VERSION); VERSION);
......
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
#define MPLEX_BASE 7 #define MPLEX_BASE 7
enum logcode {FERROR=1, FINFO=2, FLOG=3}; enum logcode {FNONE=0, FERROR=1, FINFO=2, FLOG=3};
#include "errcode.h" #include "errcode.h"
......
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