From a81d33478393f16d7e843338886da32daddcd144 Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Mon, 11 Nov 2002 21:13:54 +0000 Subject: [PATCH] Changed logging for openfile --- mbcico/openfile.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mbcico/openfile.c b/mbcico/openfile.c index afaa9da5..b51c5fd6 100644 --- a/mbcico/openfile.c +++ b/mbcico/openfile.c @@ -96,7 +96,8 @@ FILE *openfile(char *fname, time_t remtime, off_t remsize, off_t *resofs, int(*r infpath = xstrcat(infpath, (char *)"/"); infpath = xstrcat(infpath, fname); if (stat(infpath, &st) == 0) { - Syslog('S', "remtine=%ld, st_time=%ld, remsize=%ld, st_size=%ld", remtime, st.st_mtime, remsize, st.st_size); + /* FIXME: temp normal logging now! */ + Syslog('-', "remtine=%ld, st_time=%ld, remsize=%ld, st_size=%ld", remtime, st.st_mtime, remsize, st.st_size); if ((remtime == st.st_mtime) && (remsize == st.st_size)) { Syslog('+', "File %s is already here", fname);