Make rev 1.5 better match the rest of dump(8)'s output.

This commit is contained in:
obrien 2001-03-27 19:38:34 +00:00
parent c9c6dd1eff
commit 51ca15c2dc

View File

@ -85,7 +85,7 @@ initdumptimes()
if ((df = fopen(dumpdates, "r")) == NULL) {
if (errno != ENOENT) {
msg("cannot read %s: %s\n", dumpdates,
msg("WARNING: cannot read %s: %s\n", dumpdates,
strerror(errno));
return;
/* NOTREACHED */
@ -95,7 +95,7 @@ initdumptimes()
*/
msg("WARNING: no file `%s', making an empty one\n", dumpdates);
if ((df = fopen(dumpdates, "w")) == NULL) {
msg("cannot create %s: %s\n", dumpdates,
msg("WARNING: cannot create %s: %s\n", dumpdates,
strerror(errno));
return;
/* NOTREACHED */