artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6991afb
)
correct typo pointed out by chuck (in the prettiest way possible
author
deraadt
<deraadt@openbsd.org>
Fri, 1 Dec 1995 01:20:39 +0000
(
01:20
+0000)
committer
deraadt
<deraadt@openbsd.org>
Fri, 1 Dec 1995 01:20:39 +0000
(
01:20
+0000)
sbin/dump/main.c
patch
|
blob
|
history
diff --git
a/sbin/dump/main.c
b/sbin/dump/main.c
index
42d21cc
..
870231c
100644
(file)
--- a/
sbin/dump/main.c
+++ b/
sbin/dump/main.c
@@
-434,8
+434,9
@@
main(argc, argv)
if (pipeout)
msg("DUMP: %ld tape blocks\n",spcl.c_tapea);
else
- msg("DUMP: %ld tape blocks on %d volumes(s)\n",
- spcl.c_tapea, spcl.c_volume);
+ msg("DUMP: %ld tape blocks on %d volume%s\n",
+ spcl.c_tapea, spcl.c_volume,
+ spcl.c_volume > 1 ? "s" : "");
putdumptime();
trewind();
broadcast("DUMP IS DONE!\7\7\n");