From cse.psu.edu!9fans-outgoing-owner Tue Nov 28 17:08:48 1995 Received: from colossus.cse.psu.edu ([130.203.1.2]) by cannon.ecf.toronto.edu with SMTP id <4446>; Tue, 28 Nov 1995 17:08:37 -0500 Received: by colossus.cse.psu.edu id <79009>; Tue, 28 Nov 1995 16:50:11 -0500 Received: from plan9.ecf.toronto.edu ([128.100.8.9]) by colossus.cse.psu.edu with SMTP id <79007>; Tue, 28 Nov 1995 16:49:55 -0500 From: steve@plan9.ecf.toronto.edu To: 9fans@cse.psu.edu Date: Tue, 28 Nov 1995 16:44:43 -0500 Subject: fix/enhancement for disk/mkfs.c Message-Id: <95Nov28.164955est.79007@colossus.cse.psu.edu> Sender: owner-9fans@cse.psu.edu Precedence: bulk Reply-To: 9fans@cse.psu.edu Status: RO By default, the '-v' (verb) option prints the name of all files, whether or not they are actually copied. This doesn't seem to quite agree with the behavior described in the manpage, which is what I'd prefer. The following patch will cause '-v' to only print filenames for files that are copied: stealth% pwd /sys/src/cmd/disk stealth% diff orig mkfs.c 267,268d266 < if(verb) < fprint(2, "%s\n", f->new); 295c293,295 < else --- > else { > if(verb) > fprint(2, "%s\n", f->new); 296a297 > }