]> err.no Git - util-linux/commitdiff
script: improve quiet mode
authorKarel Zak <kzak@redhat.com>
Tue, 24 Jul 2007 13:22:57 +0000 (15:22 +0200)
committerKarel Zak <kzak@redhat.com>
Tue, 24 Jul 2007 13:22:57 +0000 (15:22 +0200)
script(1) is not consistent and writes "Script started on.." to
scriptfile, although the others messages are ignored when running
with '-q'.

Signed-off-by: Karel Zak <kzak@redhat.com>
misc-utils/script.c

index a8506488cc77520465307767efc6462845344685..03dd93285ba1a559aba6d5e11c0a67660966e618 100644 (file)
@@ -274,7 +274,8 @@ dooutput() {
 #endif
        tvec = time((time_t *)NULL);
        my_strftime(obuf, sizeof obuf, "%c\n", localtime(&tvec));
-       fprintf(fscript, _("Script started on %s"), obuf);
+       if (!qflg)
+               fprintf(fscript, _("Script started on %s"), obuf);
 
        for (;;) {
                if (tflg)