From f5887b6bad3a95a3e7505f2ff650f533ab63130b Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Thu, 31 Oct 1996 00:03:14 +0000 Subject: [PATCH] Oops, don't suppress initial output header (from previous commit), it is superfluous --- usr.sbin/sup/sup/supcmisc.c | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/usr.sbin/sup/sup/supcmisc.c b/usr.sbin/sup/sup/supcmisc.c index 5dd731390eb2..5c3f69af8820 100644 --- a/usr.sbin/sup/sup/supcmisc.c +++ b/usr.sbin/sup/sup/supcmisc.c @@ -27,6 +27,12 @@ ********************************************************************** * HISTORY * $Log: supcmisc.c,v $ + * Revision 1.2 1996/10/30 23:58:08 ache + * 1) print only errors if -v not given, it allows non-verbose + * crontab runnig + * 2) use full path /usr/bin/mail for security reasons + * 3) Use time_t instead of long for time (in one place) + * * Revision 1.1.1.1 1995/12/26 04:54:46 peter * Import the unmodified version of the sup that we are using. * The heritage of this version is not clear. It appears to be NetBSD @@ -310,12 +316,10 @@ va_dcl } } else noteF = stdout; - if (thisC->Cflags&CFVERBOSE) { - tloc = time ((time_t *)NULL); - fprintf (noteF,"SUP Upgrade of %s at %s", - collrelname,ctime (&tloc)); - (void) fflush (noteF); - } + tloc = time ((time_t *)NULL); + fprintf (noteF,"SUP Upgrade of %s at %s", + collrelname,ctime (&tloc)); + (void) fflush (noteF); } vfprintf(noteF,fmt,ap); va_end(ap);