-$Id: CHANGES,v 1.167 2002/03/11 10:17:42 stelian Exp $
+$Id: CHANGES,v 1.168 2002/03/27 16:48:38 stelian Exp $
Changes between versions 0.4b27 and 0.4b28 (released ?????????????????)
=======================================================================
headers/architecture combination. Thanks to Bdale Garbee
<bdale@gag.com> for reporting the bug.
+6. Added the appropriate error message when dump fails to
+ open the output file for writing. Thanks to Amith Varghese
+ <amithv@yahoo.com> for reporting this bug.
+
Changes between versions 0.4b26 and 0.4b27 (released February 15, 2002)
=======================================================================
-$Id: THANKS,v 1.54 2002/02/25 13:54:52 stelian Exp $
+$Id: THANKS,v 1.55 2002/03/27 16:48:38 stelian Exp $
Dump and restore were written by the people of the CSRG at the University
of California, Berkeley.
Erik Troan ewt@redhat.com
Theodore Y. Ts'o tytso@valinux.com
Stephen Tweedie sct@dcs.ed.ac.uk
+Amith Varghese amithv@yahoo.com
Daniel Veillard Daniel.Veillard@imag.fr
Jason Venner jason@idiom.com
Christian Weisgerber naddy@mips.rhein-neckar.de
#ifndef lint
static const char rcsid[] =
- "$Id: tape.c,v 1.65 2002/03/11 10:17:43 stelian Exp $";
+ "$Id: tape.c,v 1.66 2002/03/27 16:48:38 stelian Exp $";
#endif /* not lint */
#include <config.h>
OPEN(tape, O_RDWR|O_CREAT, 0666))) < 0)
#endif
{
- msg("Cannot open output \"%s\".\n", tape);
+ msg("Cannot open output \"%s\": %s\n", tape,
+ strerror(errno));
if (!query("Do you want to retry the open?"))
dumpabort(0);
}