Hi,

Awffull seems to display errors with a verbosity level of 0, even when -Q is given. I'm not sure why the verbosity level for this message is set to 0 (doesn't seem that fatal to me), but here's a simple patch which gets rid of the annoying daily cron mail:

$ diff -u src/css_file.c.old src/css_file.c
--- src/css_file.c.old  2007-01-18 15:24:39.000000000 +0100
+++ src/css_file.c      2007-01-18 15:24:49.000000000 +0100
@@ -126,7 +126,7 @@
         sprintf(lineout, "%s\n", css[i]);
         write_rtn = write(cssfile, lineout, strlen(lineout));
if (write_rtn == -1 && css_exists_warning == false && css_created == false) { - ERRVPRINT(VERBOSE0, _("CSS File \"%s\" Exists. Not writing a new one.\n"), css_filename); + ERRVPRINT(VERBOSE1, _("CSS File \"%s\" Exists. Not writing a new one.\n"), css_filename);
             css_exists_warning = true;
             break;
         }

--
          Bart


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to