]> git.wh0rd.org - dump.git/commitdiff
Changed two info messages of restore to be written on stdout instead of stderr.
authorStelian Pop <stelian@popies.net>
Sat, 19 Aug 2000 22:39:35 +0000 (22:39 +0000)
committerStelian Pop <stelian@popies.net>
Sat, 19 Aug 2000 22:39:35 +0000 (22:39 +0000)
CHANGES
THANKS
restore/tape.c

diff --git a/CHANGES b/CHANGES
index dd172dcd6121ff7c0be8a53fcf281588cfb1ba0c..635146b623778ad4a02c7e85baa4d81c9672eda1 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,4 @@
-$Id: CHANGES,v 1.70 2000/08/19 22:08:53 stelian Exp $
+$Id: CHANGES,v 1.71 2000/08/19 22:39:35 stelian Exp $
 
 Changes between versions 0.4b17 and 0.4b19 (released ?????????????)
 ===================================================================
 
 Changes between versions 0.4b17 and 0.4b19 (released ?????????????)
 ===================================================================
@@ -9,6 +9,11 @@ Changes between versions 0.4b17 and 0.4b19 (released ?????????????)
 
 2.     Specified the default blocksize in the dump man page.
 
 
 2.     Specified the default blocksize in the dump man page.
 
+3.     Changed two info messages of restore to be written on stdout
+       instead of stderr in order to leave stderr only for errors
+       or warnings. Thanks to Stephen Atwell 
+       <satwell@urbana.css.mot.com> for the suggestion.
+
 Changes between versions 0.4b17 and 0.4b18 (released June 30, 2000)
 ===================================================================
 
 Changes between versions 0.4b17 and 0.4b18 (released June 30, 2000)
 ===================================================================
 
diff --git a/THANKS b/THANKS
index c66d84ecff52aafa4bb911f3dadd7ffadb38d78d..78268635b72a46cfd4bf6813e6650fbcbc700d44 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -1,4 +1,4 @@
-$Id: THANKS,v 1.31 2000/06/30 09:12:14 stelian Exp $
+$Id: THANKS,v 1.32 2000/08/19 22:39:35 stelian Exp $
 
 Dump and restore were written by the people of the CSRG at the University
 of California, Berkeley.
 
 Dump and restore were written by the people of the CSRG at the University
 of California, Berkeley.
@@ -21,6 +21,7 @@ dump-0.4b5).
 Thanks to people who reported problems with the port, sent patches, and
 suggested various improvements.
 Here is a partial list of them (if I have forgotten someone, please complain):
 Thanks to people who reported problems with the port, sent patches, and
 suggested various improvements.
 Here is a partial list of them (if I have forgotten someone, please complain):
+Stephen Atwell         satwell@urbana.css.mot.com
 Stan Bubrouski         satan@fastdial.net
 Stephen Carr           sgcarr@civeng.adelaide.edu.au
 Rob Cermak             cermak@ahab.rutgers.edu
 Stan Bubrouski         satan@fastdial.net
 Stephen Carr           sgcarr@civeng.adelaide.edu.au
 Rob Cermak             cermak@ahab.rutgers.edu
index 2f57d5fe59192541ddb9e028da896b60e67f3bf3..130f3cabcf5f105fb0d8ca857e3b18430c42c52e 100644 (file)
@@ -45,7 +45,7 @@
 
 #ifndef lint
 static const char rcsid[] =
 
 #ifndef lint
 static const char rcsid[] =
-       "$Id: tape.c,v 1.18 2000/06/25 18:42:39 stelian Exp $";
+       "$Id: tape.c,v 1.19 2000/08/19 22:39:35 stelian Exp $";
 #endif /* not lint */
 
 #include <sys/param.h>
 #endif /* not lint */
 
 #include <sys/param.h>
@@ -546,9 +546,9 @@ printdumpinfo(void)
 #endif
        if (spcl.c_host[0] == '\0')
                return;
 #endif
        if (spcl.c_host[0] == '\0')
                return;
-       fprintf(stderr, "Level %d dump of %s on %s:%s\n",
+       fprintf(stdout, "Level %d dump of %s on %s:%s\n",
                spcl.c_level, spcl.c_filesys, spcl.c_host, spcl.c_dev);
                spcl.c_level, spcl.c_filesys, spcl.c_host, spcl.c_dev);
-       fprintf(stderr, "Label: %s\n", spcl.c_label);
+       fprintf(stdout, "Label: %s\n", spcl.c_label);
 }
 
 int
 }
 
 int