fixed some logcode warnings
authorAndrew Tridgell <tridge@samba.org>
Sat, 29 Jan 2000 02:49:03 +0000 (02:49 +0000)
committerAndrew Tridgell <tridge@samba.org>
Sat, 29 Jan 2000 02:49:03 +0000 (02:49 +0000)
io.c
log.c
options.c
rsync.h

diff --git a/io.c b/io.c
index aefd3ef..c01296d 100644 (file)
--- 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 8619e4d..f0ee10e 100644 (file)
--- 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 */
index 00cfc0b..ca849d5 100644 (file)
--- 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 3c5b7dc..2673c79 100644 (file)
--- 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"