From 0f3203c312c3e254b611a1687f8ff9a6bdf82376 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 29 Jan 2000 02:49:03 +0000 Subject: [PATCH] fixed some logcode warnings --- io.c | 2 +- log.c | 4 ++-- options.c | 2 +- rsync.h | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/io.c b/io.c index aefd3ef4..c01296da 100644 --- a/io.c +++ b/io.c @@ -429,7 +429,7 @@ void io_flush(void) if (!io_buffer_count || no_flush) return; if (io_multiplexing_out) { - mplex_write(fd, 0, io_buffer, io_buffer_count); + mplex_write(fd, FNONE, io_buffer, io_buffer_count); } else { writefd_unbuffered(fd, io_buffer, io_buffer_count); } diff --git a/log.c b/log.c index 8619e4d6..f0ee10e0 100644 --- a/log.c +++ b/log.c @@ -194,7 +194,7 @@ void rflush(enum logcode code) /* a generic logging routine for send/recv, with parameter substitiution */ -static void log_formatted(int fd, +static void log_formatted(enum logcode code, char *format, char *op, struct file_struct *file, struct stats *initial_stats) { @@ -284,7 +284,7 @@ static void log_formatted(int fd, s = p+l; } - rprintf(fd,"%s\n", buf); + rprintf(code,"%s\n", buf); } /* log the outgoing transfer of a file */ diff --git a/options.c b/options.c index 00cfc0be..ca849d51 100644 --- a/options.c +++ b/options.c @@ -84,7 +84,7 @@ int list_only = 0; 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", VERSION); diff --git a/rsync.h b/rsync.h index 3c5b7dc7..2673c79f 100644 --- a/rsync.h +++ b/rsync.h @@ -63,7 +63,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" -- 2.34.1