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

This commit is contained in:
David E. O'Brien 2001-03-27 19:38:34 +00:00
parent 8cc6e4d84a
commit b2f6bdeeaa
1 changed files with 2 additions and 2 deletions

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 */