From 4a7a02b74aaed56c54f3d52ec03c6dc77403a962 Mon Sep 17 00:00:00 2001 From: deraadt Date: Fri, 1 Dec 1995 01:20:39 +0000 Subject: [PATCH] correct typo pointed out by chuck (in the prettiest way possible --- sbin/dump/main.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sbin/dump/main.c b/sbin/dump/main.c index 42d21cceda4..870231c8bba 100644 --- 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"); -- 2.20.1